@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:300,400,500,600,700|Work+Sans:400,500,600");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* font-size: 15px; */
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 100px);
}

:root {
  --primary-color: #F77E21;
  --secondary-color: #03827F;
  --text-color: black;
  --primary-font: 'Poppins', sans-serif;
  --secondary-font: 'Roboto', sans-serif;
}

.logo {
  max-width: 160px;
}

.navbar {
  position: fixed;
  width: 100%;
  /* outline: 1px solid black; */
  background-color: white;
  z-index: 99;
  /* box-shadow: 2px 0px 10px black; */
  transition: all 0.5s ease;
}

.navbar-shadow {
  box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 4%) 0px 10px 10px -5px;
  /* padding: 0.5rem 0px !important; */
  transition: all 0.5s ease;
}

.grid-container {
  position: relative;
  display: grid !important;
  grid-template-columns: auto auto auto auto;
  /* place-items: center; */
  text-align: center;
  grid-template-rows: 1fr 1fr;

}



#txtName,
#txtName4,
#txtName5{
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
}

.navbar-brand {
  grid-row: 1 / -1;
}

#navbarNav_1 {
  /* background-color: aqua; */
  grid-column: 2 / -1;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: end;
}

.responsive-contact-sec {
  display: none !important;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  background-color: #fd7e14;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  line-height: 40px; /* Center icon vertically */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.nav-contact-wrapper .emain-sec {
  position: relative;
  margin-right: 1rem;
  color: black;
}

.nav-contact-wrapper .emain-sec::before {
  content: "contact@edhaasdigisoft.com";
  position: absolute;
  color: var(--primary-color);
  left: 0;
  top: 0%;
  width: 0px;
  background-color: white;
  overflow: hidden;
  border-bottom: 1px solid var(--primary-color);
}

.nav-contact-wrapper .emain-sec:hover::before {
  width: 100%;
}

.nav-contact-wrapper .callin-sec {
  position: relative;
  margin-right: 1rem;
  color: black;
}

.nav-contact-wrapper .callin-sec::before {
  content: "Call Us Now: +91 9175009033 / +91 9552113579";
  position: absolute;
  color: var(--primary-color);
  left: 0;
  top: 0%;
  width: 0px;
  background-color: white;
  overflow: hidden;
  border-bottom: 1px solid var(--primary-color);
}

.nav-contact-wrapper .callin-sec:hover::before {
  width: 100%;
}


#navbarNav {
  /* background-color: rgb(48, 240, 0); */
  grid-column: 2 / -1;
  display: flex;
  justify-content: end;
}

.navbar-nav {
  flex-direction: row;
}

.navactive {
  transform: translateX(0%) !important;
}


/* WhatsApp Launcher */
#whatsapp-launch-btn {
  position: fixed;
  bottom: 20px;
  right: 13px;
  background: #25D366;
  color: #ffffff;
  padding: 12px;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* WhatsApp icon inside button */
#whatsapp-icon {
  width: 30px;
  height: 30px;
  color: white;
  transition: transform 0.5s ease;
}

#whatsapp-icon.rotate {
  transform: rotate(360deg);
}

/* WhatsApp Popup */
#whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 13px;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 10000;
  font-family: Arial, sans-serif;
  display: none;
  opacity: 0;
  transform: translateY(30px);
}

/* Show class triggers animation */
#whatsapp-popup.show {
  display: block;
  animation: fadeSlideIn 0.5s ease-out forwards;
}

/* Fade + Slide In Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Popup Header */
.popup-header {
  background: #128c7e;
  color: white;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Header Text */
.header-text {
  font-size: 13px;
  line-height: 1.2;
}
.header-text a{
  font-size: 20px;
}

/* Smooth rotation animation */
.rotate-icon {
  animation: rotate360 0.5s ease-in-out;
}

/* Keyframes for rotation */
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rotate-icon {
  animation: rotateOnly 0.5s ease-in-out;
}

@keyframes rotateOnly {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}



/* Popup Body */
.popup-body {
  background: #f5f5f5;
  padding: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.response-time {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.chat-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: background 0.2s;
}

.chat-entry:hover {
  background: #e6e6e6;
}

/* Close Button 
.close-circle {
  position: fixed;
  bottom: -72px;
  right: 0px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  font-size: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  cursor: pointer;
  z-index: 10001;
  display: none;
  opacity: 0;
   box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Close circle default style */
.close-circle {
  position: fixed;
  bottom: -70px;
  right: 0px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  font-size: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  cursor: pointer;
  z-index: 10001;
  display: none;
  opacity: 0;
  box-shadow: 0 0px 15px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.close-circle.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}


@media screen and (max-width:768px) {
  .navbar-nav li .sub-menu {
    position: static !important;
  }

  .navbar-nav {
    flex-direction: column;
  }

  /* .footer-link-section {
    flex-direction: column;
  } */

}


.navbar-nav .nav-item {
  position: relative;
  /* padding: 1% 2%; */
  /* background-color: #F77E21; */
  margin: 0px 0.5rem;
  font-weight: 600;
  /* display: flex; */
  text-align: left;
}

.navbar-nav .nav-item:last-child {
  margin: 0;
}

.navbar-nav li .sub-menu {
  position: absolute;
  /* margin: 0px 2rem; */
  background-color: rgb(255, 255, 255);
  top: 53px;
  /* outline: 1px solid black; */
  /* display: none; */
  text-align: left;
  z-index: 99;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.479);
  border-radius: 10px;
}



#buss-link {
  /* background-color: #F77E21; */
  left: -26px;
  min-width: 286px;
  opacity: 0;
  visibility: hidden;
  height: 00px;
  transition: all 0.3s ease-in;
  padding-left: 3rem;
}

@media screen and (max-width:768px) {
  .header-logo {
    z-index: 9999;
    grid-row-start: 2;
    margin-left: 1rem;
  }

  .navbar {
    padding: 0;
  }

  #buss-link {
    padding: 0rem 1rem;
    min-width: 100%;
    height: 0px;
  }

  #buss-btn:hover #buss-link {
    height: 100%;
  }

  .navbar-nav li .sub-menu {
    box-shadow: none;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0.4rem 0px;
  }

  #com-btn:hover #com-links {
    height: 100%;
  }

  .navbar-nav .nav-item:last-child {
    margin: 0.6rem 0px;
  }


  .navbar .com-padding {
    padding: 0%;
  }

  .navbar-nav {
    margin: 8rem auto 0 4rem;
  }


  #navbarNav {
    position: absolute;
    top: 0;
    background-color: #ffffff;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    transform: translateX(100%);
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.568); */
    transition: all 0.5s ease-in-out;
    flex-direction: column;
    justify-content: space-between;
  }

  #navbarNav_1 {
    grid-column: 1 / -1;
    background-color: var(--primary-color);
    height: 100%;
    align-items: center;
  }

  .nav-contact-wrapper {
    text-align: center;
    width: 100%;
    color: white;
  }

  .nav-contact-wrapper .emain-sec {
    color: white;
    text-decoration: underline;
  }

  .menu-icon-holder {
    position: static;
    display: block;
    margin-right: 1rem;
    z-index: 999;
    grid-column-start: 4;
    grid-column-end: 4;
    grid-row-start: 2;
  }
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

#buss-btn:hover #buss-link {
  height: 180px;
  opacity: 1;

  visibility: visible;
}

#buss-btn:hover .more-arrow {
  transform: rotate(180deg);
}



.company-link #com-links {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  padding: 0rem 1rem;
  transition: all 0.3s ease-in;
}

#com-btn:hover #com-links {
  opacity: 1;
  visibility: visible;
  height: 192px;
}

.more-arrow {
  transition: 0.2s ease;
}

#com-btn:hover .more-arrow {
  transform: rotate(180deg);
}



.navbar-nav li .sub-menu li {
  margin: 1rem 0rem;
}

.sub-menu li {
  list-style: none;
}

.sub-menu li a {
  /* color: #ea5210; */
  color: black;
  font-size: 00.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sub-menu li a:hover {
  /* color: #ea5210; */
  color: var(--secondary-color);
}

.menu-icon-holder {
  position: absolute;
  right: 0;
  display: none;
}




.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 30px;
  height: 30px;
  cursor: pointer;
  /* outline: 1px solid black; */
  overflow: hidden;
  /* text-align: right; */
  transition: all 0.5s ease-in-out;
}




.menu-icon .menu-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  transition: all 0.3s ease-in-out;
}

.menu-icon.baractive .menu-bar {
  background-color: var(--primary-color);
}

.menu-icon .menu-bar:nth-child(1) {
  width: 40%;
  transform: translateY(-10px);
}

.menu-icon .menu-bar:nth-child(2) {
  width: 60%;

}

.menu-icon .menu-bar:nth-child(3) {
  transform: translateY(10px);
}

.menu-icon.baractive .menu-bar:nth-child(3) {
  width: 100%;
  transform: translateY(-3px) rotate(226deg);

}

.menu-icon.baractive .menu-bar:nth-child(1) {
  width: 100%;
  transform: translateY(0px) rotate(-45deg);

}

.menu-icon.baractive .menu-bar:nth-child(2) {
  transform: translateX(-100px);
}

.com-padding {
  padding: 1% 5%;
}

@media screen and (max-width:500px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 1rem 0px !important;
  }

  .menu-icon {
    width: 25px;
    height: 25px;
  }

  .grid-container {
    grid-template-rows: auto;
  }

  #navbarNav_1 {
    display: none;
  }

  .responsive-contact-sec {
    display: block !important;
    height: auto !important;
    margin-bottom: 5rem !important;
    background-color: transparent !important;
  }

  .nav-contact-wrapper {
    /* text-align: left; */
    padding: 1rem;
    color: black !important;
  }

  .nav-contact-wrapper .emain-sec {
    color: black !important;
    margin: 0.5rem;
  }
}

p,
.paragraph {
  font-weight: 400;
  color: #666;
  font-size: 17px;
  line-height: 25px;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

h1,
.h1 {
  font-size: 60px;
}

.page-content strong {
  font-size: 35px !important;

}

.page-content h1 {
  line-height: 2.6rem !important;
  color: #ea5210;

}

.section-item .page-content ul li a:hover {
  text-decoration: underline;

}

.grid {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: minmax(100px, auto);
  grid-auto-flow: dense;
  grid-gap: 10px;
}

.grid .box {
  box-shadow: 0px 10px 35px 0px rgb(0 0 0 / 10%);
  padding: 20px;
  display: grid;
  font-size: 20px;
  color: #fff;
  transition: 0.5s;

}

.grid .box h5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.grid .box:hover p {
  color: #000 !important;
}

.grid .box:hover {
  background: #f9ceb9;
}

.grid .box img {
  position: relative;
}

.grid .box:nth-child(1) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

.grid .box:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid .box:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
}

.grid .box:nth-child(7) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid .box:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(9) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid .box:nth-child(10) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(11) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid .box:nth-child(13) {
  grid-column: span 1;
  grid-row: span 1;
}

.grid .box:nth-child(14) {
  grid-column: span 2;
  grid-row: span 1;
}

.grid .box:nth-child(17) {
  grid-column: span 1;
  grid-row: span 2;
}

.grid .box:nth-child(18) {
  grid-column: span 2;
  grid-row: span 2;
}

.overview {
  background-color: #ea5210;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 120px;
  padding-top: 50px;
}

.bc {
  background-color: #fff !important;
  padding: 10px;
}

.member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

div#wpcs_tab_421 {
  border-bottom: none;
  cursor: pointer;
  width: 170px;
  height: 34px;
  overflow: hidden;
  background: #ea5210;
  color: #fff;
  padding: 1px 0px 1px 0px;
  position: fixed;
  top: 250px;
  right: -68px;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  z-index: 99;
  font-size: 18px;
  border-radius: 5px 5px 0px 0px;
}

#about .extricate-logo {
  display: block;
  width: 30%;
  height: 100%;
  object-fit: cover;
  float: left;
  margin-right: 1rem;
  background-color: white;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 2rem;
  border-radius: 1rem;
}

.flotigBtn {
  position: fixed;
  display: flex;
  /* grid-template-columns: auto auto; */
  /* grid-template-rows: auto auto; */
  right: -40px;
  top: 35%;
  /* left: 50%; */
  /* top: 50%; */
  /* transform: translate(-50%, 50%); */
  /* background-color: brown; */
  transition: all 0.2s linear;
  z-index: 996;
}

.expand-btn {

  width: fit-content;
  height: fit-content;
  font-size: 1.2rem;

  color: white;
  transition: all 0.2s linear;
  display: block;
}

.icon-holder {
  background-color: var(--primary-color);
  border-radius: 5px 0px 0px 5px;
  padding: 0.5rem;
  width: fit-content;
  height: fit-content;
  box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px, 6px 0px 8px #0000001f;
  z-index: 1;
  cursor: pointer;
}

.flotigBtn h3 {
  /* grid-row: 1 / 2; */
  width: fit-content;
  white-space: nowrap;
  transform: rotate(-90deg);
  font-size: 1rem;
}

.text-area {
  width: 40px;
  height: 150px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 0px 5px;
  cursor: pointer;
}


.text-area h3 {
  font-family: var(--primary-font);
  color: white;
  font-weight: 400;
}

.anime {
  right: 0px;
}

.anime .icon-holder .expand-btn {
  transform: rotate(180deg);
}

div#wpcs_tab_421 a {
  color: #fff !important;
}

.btns {
  font-size: 25px !important;
  font-family: "Poppins", sans-serif;
  padding: 5px 20px;
  border-radius: 35px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  display: inline-block;
  width: fit-content;
  margin-left: auto;
}

.mar {
  margin-top: 65px !important;
  height: 300px !important;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;

}

header {
  margin-bottom: 60px;
}

.navigation {
  height: 75px;

}

.education ul {
  margin-left: 2.5rem;
  list-style-type: square !important;
}

.pd {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.video-bnr {
  position: relative;
  margin-bottom: -15.375rem;
  height: 37.5rem
}

.section-mini {
  padding-top: 6rem
}

.section-centered {
  display: flex;
  align-items: center
}

.section-centered>div {
  width: 100%
}

.full-image,
.full-image-dark {
  min-height: 60vh;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: relative
}

.full-image-dark:before {
  content: "";
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: .3
}

.full-image-dark>div {
  z-index: 100;
  position: relative
}

.news-info {
  border-bottom: #eaeaea 1px solid
}

.article-content {
  font-size: 1.125rem;
  line-height: 1.66666667
}

.lead {
  margin-bottom: 2.5rem
}

.article-content .lead {
  margin-bottom: 50px;
  font-size: 1.5rem;
  color: #999;
  font-family: Poppins, serif;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -.01em
}

.article-content .dropcap:first-letter {
  float: left;
  margin-bottom: -1rem;
  margin-right: 1rem;
  font-size: 3.75rem;
  font-family: Poppins, serif;
  line-height: 1.275
}

.page-content {
  background: #fff;
  padding-top: 4%;
  position: relative;
  z-index: 98
}

/* Second*/
.bread {
  background-color: transparent !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.bread p {
  position: relative;
}



.bread li,
.bread p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

@media (max-width: 400px) {

  h1,
  .h1 {
    font-size: 30px;
  }

  .mar h1 {
    font-size: 25px !important;

  }
}

h2,
.h2 {
  font-size: 36px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 20px;
}

.content>h5 {
  font-size: 18px;
}

/* h5,
.h5 {

} */

/* h6,
.h6 {
  font-size: 15px;
} */

.section {
  padding: 100px 0;
}

.fa-circle-check {
  color: #ea5210;
  padding: 4px;
  border-radius: 50%;
}

.bgimg {
  position: relative;
  background-image: url("../media/img/about\ us\ img/idea 3.svg");
  background-size: contain;
  /* overflow: hidden; */
}

/* .bgimg::before {
  content: "";
  position: absolute;
  background-image: url('../media/img/about\ us\ img/idea.svg');
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
} */

.vision {
  display: flex;
  justify-content: center;
  align-content: center;
  min-height: 55vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5) 60%, #fff 50%, #fff 100%);
}

.vision .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.vision .container .box {
  position: relative;
  width: 350px;
  background: #fff;
  margin-top: 100px;
  padding: 120px 40px 60px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.vision .container .box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ea5210;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
}

.vision .container .box:hover:before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.vision .container .box h2 {
  position: absolute;
  left: 40px;
  top: 50px;
  font-size: 4em;
  font-weight: 600;
  z-index: 1;
  opacity: 0.1;
  transition: 0.5s;
}

.vision .container .box h3 {
  position: relative;
  z-index: 2;
  transition: 0.5s;
  color: #ea5210;
  padding-bottom: 5px;
}

.vision .container .box:hover h2 {
  opacity: 1;
  color: #fff;
  transform: translateY(-30px);
}

.vision .container .box p,
h3 {
  position: relative;
  z-index: 2;
  transition: 0.5s;

}

.vision .container .box:hover p {
  color: #fff;

}

.vision .container .box:hover h3 {
  color: #fff;

}

.callout-badge-item {
  border: 0px solid #c0bfc0;
  box-shadow: 0px 0px 8px #ccc;

}

.counts {
  padding: 70px 0 60px;
}

.counts section {
  padding: 60px 0;
  overflow: hidden;
}

.clients {
  padding: 15px 0;
  text-align: center;
}

.heading p {
  width: 50%;
}

.heading p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 0px 8px #ccc;
}

.counts .container {
  max-width: 1320px;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  background: #ea5210;
  color: #fff;
  width: 62px;
  height: 62px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.count-box h4 {
  color: #ea5210;
  padding-top: 15px;
  padding-bottom: 10px;
}

.team {
  padding: 60px 0;
}

.section-bg {
  background-color: #f2f2f2 !important;
}

section {
  overflow: hidden;
}

section {
  display: block;
}

.technologies p {
  width: 100%;
  margin: 15px auto 0 auto;
  font-weight: 600;
  padding-bottom: 30px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 10px 35px 0px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

/* 1.3 Button style */
.btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 16px 44px;
  border-radius: 35px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background: #ea5210;
  ;
  color: #fff;
}

.btn-primary:active {
  background: #ea5210 !important;
}

.btn-primary:hover {
  background: #008380;
}

.btn-secondary {
  background: #303032;
  color: #fff;
}

.btn-secondary:active {
  background: #ea5210 !important;
}

.btn-secondary:hover {
  background: #ea5210 !important;
  background: #ee7171;
}

.btn-light {
  background: #fff;
  color: #222;
  border: 2px solid #fff;
}

.btn-light:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.item img {
  height: 700px !important;
}

.btn-outline {
  background: transparent;
  color: #222;
  border: 2px solid #303032;
}

.btn-outline:hover {
  background: #303032;
  color: #fff;
}

.btn-sm {
  padding: 13px 40px !important;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a {
  transition: 0.2s ease;
}

a:hover {
  color: #ea5210;
}

a.text-dark:hover {
  color: #ea5210 !important;
}

a,
button {
  cursor: pointer;
}

.outline-0 {
  outline: 0;
}

.d-unset {
  display: unset !important;
}

.slick-slide {
  outline: 0;
}

.centralized {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hilighted {
  background: #303032;
  color: #919E4D;
  border-radius: 3px;
  padding: 2px 5px;
}

.section {
  padding: 100px 0;
}

.fa {
  display: inline-block;
}

.content ul i {
  background: #fff;
  box-shadow: 0 6px 15px #106eea1f;
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #ea5210;
  border-radius: 50px;
  width: fit-content;
  height: fit-content;
}

.captcha-box {
  padding: 6px 12px;
  font-size: 20px;
  letter-spacing: 1.0rem;
  background-color: #e3e3e3;
  border: 1px solid #ccc;
  border-radius: 4px;
  user-select: none;
  min-width: 250px;
  text-align: center;
}

.reload-icon-btn {
  background: #e6f0ff;
  border: none;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  color: #019d90;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reload-icon-btn:hover {
  background-color: #d0e7ff;
  color: #019d90;
}

.captcha-input {
  max-width: 350px;
  margin-left: 5px;
}


@media(max-width: 420px) {
  .carousel-inner {
    height: 300px !important;
  }
}

@media (max-width: 575px) {
  .pd {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .full-image-dark {
    min-height: 20vh !important;
  }

  .video-bnr {
    height: 25rem;
  }

  .page-content strong {
    font-size: 25px !important;
  }

  .page-content h1 {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .mar h1 {
    margin-bottom: 20px !important;
  }

  .mar h2 {
    font-size: 17px !important
  }

  .content ul i {
    padding: 10px;
  }

  .section {
    padding: 80px 0;
  }

  .page-title {

    padding: 50px 0 50px !important;
  }

  .nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }

  .navigation {
    height: 60px;
  }

  header {
    margin-bottom: 60px;
  }

  .section {
    padding: 25px 0 !important;
  }

  h2 {
    font-size: 20px !important;
  }

  .section-title {
    margin-bottom: 35px !important;
  }

  .top-header {
    display: none;
  }

  .d-inline-block .h5 {
    font-size: 14 !important;
  }

  .bgimg {
    display: none !important;
  }

  .heading p {
    width: 100%;
  }

  .font-weight-bold h2 {
    margin: 0px !important;
  }

  .overview {
    background-color: #ea5210;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-top: 10px !important;
  }
}

.section-sm {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 55px;
}

.section-title-sm {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #666;
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}

.overlay-primary {
  position: relative;
}

.overlay-primary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #ea5210;
  opacity: 0.6;
}

.overlay-white {
  position: relative;
}

.overlay-white::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.7;
}

.overlay-rounded::before {
  border-radius: 5px;
}

.section-title-border {
  position: relative;
}

.section-title-border::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ea5210;
}

.section-title-border::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ea5210;
  box-shadow: 0 0 0 5px #fff;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title-border-gray {
  position: relative;
}

.section-title-border-gray::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 120px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ea5210;
}

.section-title-border-gray::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 2px solid #ea5210;
  box-shadow: 0 0 0 5px #f5f5f5;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title-border-half {
  position: relative;
}

.section-title-border-half::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ea5210;
  bottom: -14px;
  left: 0;
}

.section-title-border-half::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
  background: #ea5210;
}

.section-title-border-half-white {
  position: relative;
}

.section-title-border-half-white::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgb(255, 255, 255);
  bottom: -14px;
  left: 0;
}

.section-title-border-half-white::after {
  background: rgb(255, 255, 255);
  position: absolute;
  content: "";
  height: 2px;
  width: 50px;
  left: 15px;
  bottom: -10px;
}

/* 1.2.1 page title */
.page-title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
}

/* breadcrumb */
.breadcrumb {
  background-color: transparent !important;
  justify-content: center;
}

.breadcrumb li,
.breadcrumb a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 10px;
  cursor: pointer;
}

.breadcrumb a {
  position: relative;
}


/* .breadcrumb>li+li:before {
  padding: 0 0px;
  color: #ccc;
  content: "";
} */

/* 1.2.2 404 page start */
.page-404 {
  padding: 600px 0 60px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .page-404 {
    padding: 450px 0 50px;
  }

  .vision .container .box {
    width: 230px !important;
  }
}

@media (max-width: 575px) {
  .page-404 {
    padding-top: 250px;
  }
}

@media (max-width: 400px) {
  .page-404 {
    padding-top: 150px;
  }
}

.page-404 h1 {
  font-size: 40px;
}

/* 404 page end */
/* play-icon */
.play-icon {
  width: 85px;
  height: 85px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  text-align: center;
}

.play-icon:focus {
  outline: 0;
}

.play-icon i {
  line-height: 79px;
  display: block;
  font-size: 30px;
  color: #fff;
}

/* round icon */
.round-icon {
  height: 50px;
  min-width: 50px;
  max-width: 50px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  color: #ea5210;
  display: inline-block;
  margin: auto 0;
}

/* 18. squre icon */
.square-icon {
  height: 65px;
  width: 65px;
  background: #ea5210;
  color: #fff;
  font-size: 35px;
  line-height: 65px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
}

/* team social icon */
.social-icon-lg {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 25px;
  display: inline-block;
}

.social-icon-lg i {
  margin: 0;
  color: #fff;
}

.box-shadow {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}

.golden {
  color: #efaf27 !important;
}

.bg-gray {
  background-color: #f5f5f5;
}

.bg-primary {
  background-color: #ea5210 !important;
}

/* .bg-secondary {
  background-color: #303032 !important;
} */

.text-primary {
  color: #ea5210 !important;
}

.bg-facebook {
  background-color: #4267b2;
}

.bg-twitter {
  background-color: #449de8;
}

.bg-linkedin {
  background-color: #2f6ea3;
}

.bg-google {
  background-color: #e62211;
}

.text-color {
  color: #666;
}

.text-dark {
  color: #222;
}

.text-underline {
  text-decoration: underline;
}

.text-underline:hover {
  text-decoration: underline;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.font-secondary {
  font-family: "Poppins", sans-serif;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .grid {

    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    grid-template-rows: minmax(auto, auto);
  }

  .grid .box {
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .mb-md-50 {
    margin-bottom: 50px;
  }

  .bgimg {
    display: none !important;
  }
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.py-10 {
  padding: 10px 0;
}

.py-50 {
  padding: 50px 0;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-160 {
  padding: 160px 0;
}

.ml-65 {
  margin-left: 65px;
}

.pb-xl-200-lg-100 {
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .pb-xl-200-lg-100 {
    padding-bottom: 100px;
  }
}

.mb-xl-150-lg-100 {
  margin-bottom: 150px;
}




@media (max-width: 1199px) {
  .mb-xl-150-lg-100 {
    margin-bottom: 100px;
  }
}

.translateY-25 {
  transform: translateY(25px);
}

.translateY-10 {
  transform: translateY(-10px);
}

.translateY-33 {
  transform: translateY(-33px);
}

/* 2. Navigation */
.top-header {
  background: #ea5210;
}

@media (max-width: 575px) {
  .top-header ul {
    text-align: center;
  }
}

.top-header ul li {
  margin: 15px 0;
}

@media (max-width: 575px) {
  .top-header ul li {
    margin: 10px 0;
  }

  .btn {
    padding: 10px 20px !important;
  }

  div#wpcs_tab_421 {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: inherit;
    right: 10px;
    transform: translate(0px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 80px;
  }

  .cli h5 {
    font-size: 14px !important;
  }
}

.top-header ul li a {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #e5e5e5;
  color: #fff;
}

@media (max-width: 575px) {
  .top-header ul li a {
    border: 0;
  }
}

.top-header ul li a span {
  color: #fff;
}

.top-header ul li:last-child a {
  padding-right: 0;
  border-right: 0;
}

.navigation .navbar {
  padding: 0;
  background: #fff !important;
  position: relative;
}

.navigation .navbar-brand {
  position: absolute;
  left: 0;
  top: -54px;
  height: 120px;
  width: 220px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

@media (max-width: 991px) {
  .navigation .navbar-brand {
    position: relative;
    height: unset;
    width: unset;
    box-shadow: none;
    top: 24px;
    background: none;
  }

  .navigation .navbar-brand img {
    height: 50px;
    width: auto;
  }
}

.navigation .navbar-brand img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.navigation .navbar .nav-item {
  padding: 0px 0;
  padding-top: 15px;
}

@media (max-width: 991px) {
  .navigation .navbar .nav-item {
    padding: 0;
  }
}

.navigation .navbar .nav-item .nav-link {
  padding: 15px 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  transition: 0.2s ease;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .navigation .navbar .nav-item .nav-link {
    font-size: 12px;
    padding: 15px 6px;
  }

  .vision .container .box {
    width: 290px !important;
  }
}

@media (min-width:768px) {
  .blog .card-img-top {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .header-logo {
    z-index: 9999;
    grid-row-start: 2;
    margin-left: 1rem;
  }

  .grid-container {
    position: static;
    padding: 0;
  }

  .navbar {
    padding: 0;
  }

  .navbar .com-padding {
    padding: 0%;
  }

  .navbar-nav {
    margin: 8rem auto 0 4rem;
  }


  #navbarNav {
    position: absolute;
    top: 0;
    background-color: #ffffff;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    transform: translateX(100%);
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.568); */
    transition: all 0.5s ease-in-out;
    flex-direction: column;
    justify-content: space-between;
  }

  #navbarNav_1 {
    grid-column: 1 / -1;
    background-color: var(--primary-color);
    height: 100%;
    align-items: center;
  }

  .nav-contact-wrapper {
    text-align: center;
    width: 100%;
    color: white;
  }

  .nav-contact-wrapper .emain-sec {
    color: white;
    text-decoration: underline;
  }

  .menu-icon-holder {
    position: static;
    display: block;
    margin-right: 1rem;
    z-index: 999;
    grid-column-start: 4;
    grid-column-end: 4;
    grid-row-start: 2;
  }

  .hero-img-wrapper,
  .hero-text-wrapper {
    min-width: auto !important;
  }

  .hero-text-wrapper {
    grid-column: 1 / -1;
  }

  .hero-img-wrapper {
    grid-column: 1 / -1;
  }

  .slider-button-holder {
    grid-template-columns: repeat(1, 1fr);
  }

  .slider-btns {
    margin-top: 1rem;
  }

  .tagline>h5 {
    font-size: 2.2vmax;
    width: fit-content !important;
  }

  .contact-us-wrapper {
    position: relative;
    overflow: hidden;
  }

  .contact-img-sec {
    height: 100% !important;
    width: 100% !important;
  }

  .contact-text-area {
    position: absolute !important;
    width: 600px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
  }

  .contact-area-wrapper {
    transform: translateX(0%) !important;
  }

  .contact-text-area::before {
    display: none;
  }

  .contact-img-sec::before {
    height: 101% !important;
  }

  .contact-img-sec::after {
    width: 101% !important;
  }

}

@media (max-width: 991px) {
  .navigation {
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
  }

  .form-control {
    font-size: 14px;
  }

  p {
    font-size: 14px;

  }
}

.navigation .navbar .nav-item .nav-link:hover {
  color: #ea5210;
}

.navigation .navbar .nav-item.nav-button {
  padding: 28px 0 28px 30px;
}

@media (max-width: 991px) {
  .navigation .navbar .nav-item.nav-button {
    padding: 0;
    margin-bottom: 20px;
  }
}

.navigation .navbar .nav-item.nav-button .nav-link {
  color: #fff;
}

.navigation .navbar .nav-item.nav-button .nav-link.pgactive {
  color: #ea5210;
}

.navigation .navbar .nav-item.active .nav-link {
  color: #ea5210;
}

.navigation .navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;

  transform: scaleY(1);
}

.navigation .navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 40px 30px;
  border: 0;
  border-radius: 0;
  top: 80%;
  left: -20px;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

@media (max-width: 991px) {
  .navigation .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transform-origin: unset;
  }
}

.navigation .navbar .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

@media (max-width: 991px) {
  .navigation .navbar .dropdown-menu.show {
    display: block;
  }

  .social-icon-outline i {
    font-size: 14px;
  }

  .tab-content-item h6 {
    font-size: 14px;
  }
}

.navigation .navbar .dropdown-item {
  position: relative;
  color: #848484;
  transition: 0.2s ease;
  font-size: 16px;
}

.navigation .navbar .dropdown-item:not(:last-child) {
  margin-bottom: 20px;
}

.navigation .navbar .dropdown-item:hover {
  color: #ea5210;
  text-decoration: underline;
  background: transparent;
}

.navigation .navbar .dropdown-item::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 12px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #848484;
  border: 1px solid #fff;
  display: inline-block;
  box-shadow: 0 0 0 2px #848484;
}

@media (max-width: 991px) {
  .navigation .navbar .dropdown-item {
    text-align: center;
  }

  .navigation .navbar .dropdown-item::before {
    display: none;
  }
}

/* 2.3. Search Form */
.search-form {
  padding: 230px 0;
  background: #303032;
  position: absolute;
  width: 100%;
  top: -800px;
  z-index: 10;
  transition: 0.3s ease-in;
}

.search-form .close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
}

.search-form .close i {
  transition: 0.3s ease;
  display: inline-block;
}

.search-form .close:hover i {
  transform: rotate(90deg);
}

.search-form.open {
  top: 0;
}

.search-form .form-control {
  background: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  font-size: 20px;
  transition: 0.3s ease;
  position: relative;
  color: #fff;
  height: 130px;
  padding: 30px 40px;
}

.search-form h3 {
  font-size: 35px;
  color: #fff;
  margin-bottom: 35px;
}

.search-form .input-wrapper {
  position: relative;
}

.search-form .input-wrapper button {
  background: none;
  border: 0;
  position: absolute;
  font-size: 20px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 20px;
}

.search-form .input-wrapper button i {
  color: #fff;
}

/* 3. hero area */
.hero-slider.slick-slider {
  margin-bottom: 80px;
}

.hero-slider [data-animation-in] {
  opacity: 0;
}

.hero-slider-item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  outline: 0;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(48, 48, 50, 0.5);
  color: #fff;
  border: 0;
  font-size: 25px;
  line-height: 70px;
  opacity: 0;
  transition: all linear 0.2s;
}

@media (max-width: 575px) {

  .hero-slider .prevArrow,
  .hero-slider .nextArrow {
    display: none;
  }
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  background: rgba(232, 68, 68, 0.5);
}

.hero-slider .prevArrow {
  left: 20px;
}

.hero-slider .nextArrow {
  right: 20px;
}

.hero-slider:hover .prevArrow,
.hero-slider:hover .nextArrow {
  opacity: 1;
}

.hero-slider .slick-dots {
  bottom: -81px;
  padding-left: 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.hero-slider .slick-dots li {
  width: 295px;
  height: 80px;
  background: #fff;
  margin: 0;
  display: inline-block;
  position: relative;
  /* @include mobile-xs {
                  width: 50px;
              } */
}

@media (max-width: 1199px) {
  .hero-slider .slick-dots li {
    width: 230px;
  }
}

@media (max-width: 991px) {
  .hero-slider .slick-dots li {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .hero-slider .slick-dots li {
    width: 120px;
  }
}

@media (max-width: 575px) {
  .hero-slider .slick-dots li {
    width: 25%;
  }

  .navigation .navbar-brand img {
    height: 35px;
    width: auto;
  }

  h3 {
    font-size: 20px;
  }

  .slide_style_left {
    top: 5% !important;
    margin: 0 auto;
    left: 0;
    position: absolute;
    padding: 30px 30px !important;
  }

  .slide-text h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 600 !important;
    line-height: 18px !important;
    color: #ea5210;
    font-family: "Open Sans", sans-serif;
  }

  .slide-text h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 13px !important;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    line-height: 1.5 !important;
    font-family: "Open Sans", sans-serif;
  }

  .carousel-inner>.item>img {
    height: 200px !important;
  }

  .carousel-inner {
    height: 200px;
  }

  .slide-text .btn {
    display: none !important;
  }

  .testimonial-icon {
    height: 40px !important;
    width: 40px !important;
    line-height: 40px !important;
    font-size: 20px !important;
  }
}

.hero-slider .slick-dots li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -12px;
  height: 25px;
  width: 25px;
  background: #303032;
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0;
}

.hero-slider .slick-dots li a {
  display: block;
  position: relative;
  text-align: center;
  transition: 0.3s ease;
  color: #303032;
}

.hero-slider .slick-dots li a i {
  display: inline-block;
  font-size: 30px;
  line-height: 80px;
  margin-right: 15px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .hero-slider .slick-dots li a i {
    font-size: 20px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .hero-slider .slick-dots li a i {
    margin: 0;
  }
}

.hero-slider .slick-dots li a span {
  font-size: 18px;
  font-weight: 500;
  line-height: 80px;
}

@media (max-width: 991px) {
  .hero-slider .slick-dots li a span {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .hero-slider .slick-dots li a span {
    display: none;
  }
}

.hero-slider .slick-dots li.slick-active {
  background: #303032;
}

.hero-slider .slick-dots li.slick-active a {
  color: #fff;
}

.hero-slider .slick-dots li.slick-active::before {
  opacity: 1;
}

.hero-content h4 {
  letter-spacing: 2px;
}

/*--------------------------------------------------------------
    swipwe slider
--------------------------------------------------------------*/


.swiper-slider {
  width: 100%;
  min-height: calc(100vh - 150px);
  display: flex;
  position: relative;
  z-index: 0;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(232, 68, 68, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #ea5210;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 15px;
}

.swiper-button-prev,
.swiper-button-next {
  background: transparent;
  width: auto;
  height: auto;
  opacity: 0.3;
  text-align: center;
  transition: all 0.3s;
}

@media (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-button-prev {
  left: 25px;
}

.swiper-button-prev::before {
  font-family: "themify";
  content: "";
  font-size: 40px;
  color: #ea5210;
}

.swiper-button-next {
  right: 25px;
}

.swiper-button-next::before {
  font-family: "themify";
  content: "";
  font-size: 40px;
  color: #ea5210;
}

/* 5. progrgess bar start */
.progressbar-title {
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 7px;
  color: #222 !important;
}

.progress {
  border-radius: 35px;
  overflow: visible;
  margin-bottom: 35px;
  /* 5.2 progressbar value */
}

.progress-bar {
  background-color: #303032;
  border-radius: 35px;
  position: relative;
}

.progress-bar-value {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  background: #303032;
  padding: 5px 9px;
  position: absolute;
  top: -35px;
  right: -15px;
  border-radius: 5px;
}

.progress-bar-value::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  background: #303032;
  height: 10px;
  width: 10px;
  transform: translateX(-50%) rotate(-45deg);
}

/* progrgess bar End */
/* 6. mission section start */
.card-header:first-child {
  border-radius: 35px;
}

/* 7. promo video section start */
.promo-video {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.promo-video p {
  font-family: "Poppins", sans-serif;
}

/* promo video section end */
/* 8. testimonial section start */
.testimonial-slider {
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-slider .prevArrow,
.testimonial-slider .nextArrow {
  position: absolute;
  top: 85px;
  border: 0;
  font-size: 20px;
  background: transparent;
  color: #ea5210;
  z-index: 9;
}

.testimonial-slider .prevArrow:focus,
.testimonial-slider .nextArrow:focus {
  outline: 0;
}

.testimonial-slider .prevArrow {
  right: 90px;
}

.testimonial-slider .nextArrow {
  right: 50px;
}

.testimonial-slider .slick-disabled {
  color: #e5e5e5;
}

.testimonial-icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #ea5210;
  font-size: 25px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  margin-bottom: 25px;
}

/* testimonial section end */
/* 10. client logo slider start */
.client-logo-slider .slick-track {
  display: flex;
  align-items: center;
}

/* client logo slider end */
/* 11. fun-facts section start */
.fun-facts {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* fun-facts section end */
/* 12. consultation section start */
.consultation {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* consultation section end */
/* 16. call to action start */
.cta {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* card */
.card-img-wrapper {
  position: relative;
}

.card-img-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0;
  top: 0;
  left: 0;
  transition: 0.2s;
}

.card-body-2 {
  position: relative;
  transition: 0.2s ease;
  border-radius: 0 0 5px 5px;
}

.card-body-2::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: #fff;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transition: 0.2s ease;
}

.card:hover .card-img-wrapper::before {
  opacity: 0.4;
}

.card:hover .card-body-2 {
  background: #ea5210;
}

.card:hover .card-body-2 h5,
.card:hover .card-body-2 h6,
.card:hover .card-body-2 a {
  color: #fff;
}

.card:hover .card-body-2::before {
  background: #ea5210;
}

.overlay-rounded-top::before {
  border-radius: 5px 5px 0 0;
}

/* 13. about section */
.about {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /* 13.4 about video */
  /* 13.6 about slider */
}

.about-video {
  min-height: 300px;
}

.about-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-slider .prevArrow,
.about-slider .nextArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 0;
  line-height: 55px;
  text-align: center;
  background: #fff;
  transition: 0.2s ease;
}

.about-slider .prevArrow:focus,
.about-slider .nextArrow:focus {
  outline: 0;
}

.about-slider .prevArrow:hover,
.about-slider .nextArrow:hover {
  background: #ea5210;
  color: #fff;
}

.about-slider .prevArrow {
  left: 25px;
}

.about-slider .nextArrow {
  right: 25px;
}

/* 13.8 ceo section start */
.ceo-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  /* min-height: 400px; */
}

/* ceo section end */
/* 14.3 clients */
.clients {
  background-position: center right;
  background-size: 50%;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .clients {
    background-size: cover !important;
    background-position: center center;
    text-align: center;
  }
}

.clients ul li {
  height: 66px;
}

.clients ul li img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

/* 14.4 process */
.process-item {
  width: 330px;
}

@media (max-width: 1199px) {
  .process-item {
    width: unset;
  }
}

.process-item-number {
  position: absolute;
  left: -35px;
  top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  box-shadow: -5px 0px 40px 0px rgba(0, 0, 0, 0.1);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #222;
}

@media (max-width: 1199px) {
  .process-item-number {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-item h5 {
  margin-bottom: 5px;
  color: #ea5210;
}

img.arrow-top {
  position: absolute;
  top: 220px;
  right: 250px;
}

@media (max-width: 1199px) {
  img.arrow-top {
    display: none;
  }
}

img.arrow-bottom {
  position: absolute;
  bottom: 100px;
  left: 250px;
}

@media (max-width: 1199px) {
  img.arrow-bottom {
    display: none;
  }
}

/* service single start */
.service-menu li.active {
  position: relative;
}

.service-menu li.active a {
  background: #303032;
  color: #fff !important;
}

.service-menu li.active::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: #303032;
  top: 50%;
  right: -7px;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 991px) {
  .service-menu li.active::before {
    display: none;
  }
}

.service-menu li:hover a {
  color: #fff !important;
  background: #303032;
}

/* service single end */
/* 15. work section */
@media (max-width: 400px) {
  .work-slider .slick-dots li button {
    width: 10px;
  }
}

.work-slider .slick-dots li.slick-active button {
  border-color: #ea5210;
}

/* 19. project section */


.project-menu ul li {
  padding: 5px 20px;
  border-radius: 35px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  background: #f5f5f5;
  margin: 0 10px 25px;
}

.project-menu ul li.active {
  background: #ea5210;
  color: #fff;
}

.project-info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.2s ease;
}

.project-info a {
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
}

.project-info a:hover {
  color: #ea5210;
}

.project-info p {
  position: absolute;
  left: 25px;
  bottom: 0;
  color: #fff;
  transition: 0.2s ease;
  transform: translateY(20px);
  opacity: 0;
  transition-delay: 0.1s;
}

.project-info p i {
  margin-right: 5px;
}

.project-info:hover {
  opacity: 1;
}

.project-info:hover a {
  transform: translateY(0);
  opacity: 1;
}

.project-info:hover p {
  transform: translateY(0);
  opacity: 0.7;
}

/* 19.3 project single page start */
/* 19.4 nav tabs */
.nav-tabs {
  border: 0;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .nav-tabs {
    justify-content: center;
  }
}

.nav-tabs .nav-item:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 575px) {
  .nav-tabs .nav-item {
    margin-bottom: 10px;
  }
}

.nav-tabs .nav-item .nav-link {
  padding: 10px 30px;
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  border-radius: 45px;
  text-align: center;
  vertical-align: middle;
  color: #222;
  transition: 0.2s ease;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.nav-tabs .nav-item .active {
  background: #fff;
  color: #ea5210;
  border-color: #ea5210;
}

/* 19.5 tab content */
.tab-content {
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.tab-content-item {
  margin-left: 20px;
}

.tab-content-item:not(:last-child) {
  margin-bottom: 45px;
}

.tab-content-item h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  margin-bottom: 25px;
  position: relative;
}

.tab-content-item h6::before {
  position: absolute;
  content: "";
  font-family: "themify";
  top: 0;
  left: -20px;
  color: #ea5210;
}

.tab-content-item p {
  margin-bottom: 0;
}

/* project single page end */
/* 21.4.3 pagination */
.pagination .page-item .page-link {
  background: transparent;
  border: none;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.3s ease;
}

.pagination .page-item .page-link:hover {
  color: #ea5210;
}

.pagination .page-item.active .page-link {
  color: #ea5210;
}

.pagination .prev,
.pagination .next {
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 5px 10px;
  transition: 0.3s ease;
}

.pagination .prev:hover,
.pagination .next:hover {
  border-color: #ea5210;
}

.pagination .prev:hover .page-link,
.pagination .next:hover .page-link {
  color: #ea5210;
}

.pagination .prev {
  margin-right: 30px;
}

.pagination .next {
  margin-left: 30px;
}

/* 21.4.1 post slider */
.post-slider {
  position: relative;
}

.post-slider .prevArrow,
.post-slider .nextArrow {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  top: 50%;
  border: 0;
  font-size: 20px;
  background: transparent;
  color: #ea5210;
  z-index: 9;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s ease;
}

.post-slider .prevArrow:focus,
.post-slider .nextArrow:focus {
  outline: 0;
}

.post-slider .prevArrow:hover,
.post-slider .nextArrow:hover {
  background: rgba(232, 68, 68, 0.25);
}

.post-slider .prevArrow {
  left: 40px;
}

.post-slider .nextArrow {
  right: 40px;
}

.post-slider .slick-disabled {
  color: #e5e5e5;
}

/* 21.4.4 sidebar */
.search-wrapper {
  position: relative;
}

.search-wrapper input {
  background: #f5f5f5;
  border-radius: 30px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  font-size: 13px;
}

.search-wrapper::before {
  content: "";
  font-family: "themify";
  position: absolute;
  top: 50%;
  right: 20px;
  color: #666;
  transform: translateY(-50%);
}

ul.tag-list li {
  margin-bottom: 7px;
}

ul.tag-list li a {
  color: #666;
  padding: 10px 12px;
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  font-size: 13px;
  transition: 0.3s ease;
}

ul.tag-list li a:hover {
  background: #ea5210;
  border-color: #ea5210;
  color: #fff;
}

.newsletter .form-control {
  font-weight: 400;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  font-size: 13px;
}

/* 21.5 blog single start */
/* share icon */
.share-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
}

.share-icon i {
  color: #fff;
}

/* 21.5.7 blog sidebar */
.sidebar-box-shadow {
  box-shadow: -3px 0px 3px 0px rgba(0, 0, 0, 0.06);
}

/* blog single end */
/* 22. contact section */
.form-control {
  border-radius: 5px;
  /* margin-bottom: 15px; */
  border: 1px solid #e5e5e5;
  font-family: "Poppins", sans-serif;
  /* font-weight: 600; */
  /* font-size: 15px; */
  color: #666;
}

/* .form-control:focus {
  border-color: #ea5210;
  box-shadow: none !important;
} */

.form-control::-moz-placeholder {
  color: #666;
}

.form-control:-ms-input-placeholder {
  color: #666;
}

.form-control::placeholder {
  color: #666;
}

/* 22.3 google map */
.map {
  position: relative;
}

.map #map_canvas {
  height: 450px;
}

/* 23.1 signup greetings */
.signup {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  /* 23.2 signup form */
}

.signup-greeting {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 140px;
  text-align: center;
}

@media (max-width: 1199px) {
  .signup-greeting {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .signup-greeting {
    padding-top: 200px;
  }
}

@media (max-width: 575px) {
  .signup-greeting {
    padding-top: 400px;
  }
}

.signup-greeting img {
  margin-bottom: 50px;
  position: relative;
  z-index: 9;
}

.signup-greeting h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}

.signup-greeting p {
  color: #fff;
  position: relative;
  z-index: 9;
  margin: 0 40px;
}

.signup-form {
  padding: 50px 50px 50px 35px;
}

@media (max-width: 1199px) {
  .signup-form {
    padding: 50px 15px 50px 0;
  }
}

@media (max-width: 767px) {
  .signup-form {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .signup-form {
    text-align: center;
  }
}

.signup-form h4 {
  float: left;
  font-size: 26px;
  margin-bottom: 35px;
}

@media (max-width: 575px) {
  .signup-form h4 {
    float: unset;
  }
}

.signup-form a {
  color: #ea5210;
}

.signup-form .btn {
  margin-top: 30px;
}

.signup-form p.signup-with {
  display: inline-block;
  margin-top: 42px;
}

.signup-form ul {
  margin-top: 37px;
  display: inline-block;
}

.signup-form ul li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 24. comming soon */
.comming-soon {
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

.comming-soon h1 {
  font-size: 50px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .comming-soon h1 {
    font-size: 30px;
  }
}

.comming-soon .form-control {
  height: 45px;
  border-radius: 45px;
  position: relative;
  background: transparent;
  border: 1px solid #e5e5e5;
  color: #fff;
  margin-bottom: 40px;
}

.comming-soon .form-control::-moz-placeholder {
  color: #666;
}

.comming-soon .form-control:-ms-input-placeholder {
  color: #666;
}

.comming-soon .form-control::placeholder {
  color: #666;
}

.comming-soon .btn-email {
  position: absolute;
  top: 0;
  right: 15px;
  background: #fff;
  border: 0;
  color: #ea5210;
  border-radius: 45px;
  height: 45px;
  padding: 0 50px;
}

@media (max-width: 575px) {
  .comming-soon .btn-email {
    padding: 0 10px;
  }
}

.comming-soon i {
  color: #5c5c5c;
  margin: 0 15px;
  transition: 0.2s ease;
  font-size: 24px;
}

.comming-soon i:hover {
  color: #ea5210;
}

/* 24.1 syotimer */
.syotimer {
  text-align: center;
  margin: 0 auto 40px;
}

.syotimer-cell:last-child .syotimer-cell__value::before {
  opacity: 0;
}

.syotimer-cell {
  display: inline-block;
  margin: 0 25px;
}

@media (max-width: 1199px) {
  .syotimer-cell {
    margin: 0 20px;
  }
}

@media (max-width: 575px) {
  .syotimer-cell {
    margin: 0 10px;
  }
}

@media (max-width: 400px) {
  .syotimer-cell {
    margin: 0 5px;
  }
}

.syotimer-cell__value {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

@media (max-width: 1199px) {
  .syotimer-cell__value {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .syotimer-cell__value {
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .syotimer-cell__value {
    font-size: 24px;
  }
}

.syotimer-cell__value::before {
  position: absolute;
  content: ":";
  height: 30px;
  color: #fff;
  right: -30px;
  top: 0;
}

@media (max-width: 575px) {
  .syotimer-cell__value::before {
    right: -20px;
  }

  .mar {
    margin-top: 0px !important;
    height: 300px !important;
  }
}

@media (max-width: 400px) {
  .syotimer-cell__value::before {
    right: -12px;
  }
}

.syotimer-cell__unit {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

/* 25.1 social link */
.social-icon-outline {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
  transition: 0.2s ease;
  display: inline-block;
}

.social-icon-outline i {
  line-height: 40px;
  color: #fff;
  font-size: 15px;
}

.social-icon-outline:hover {
  border-color: #ea5210;
}

/* 25.2 footer link */


@media screen and (max-width:575px) {
  .f-header {
    flex-direction: column;
  }

  .social-media-sec {
    margin-top: 1rem;
  }

  .tagline>h5 {
    font-size: 1.8vmax;
  }

}

footer {
  position: relative;
  background-color: rgba(255, 255, 255, 0.76);
  margin-top: auto;
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.589);
}

.footer::before {
  content: "";
  position: absolute;
  background-image: url("../media/img/globe\ map.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

.f-logo {
  background-color: #ffffff;
  border-radius: 50px;
}

.social-media-sec>a>svg {
  height: 40px;
  transition: all 1s ease-in-out;
}

#facebook_bg,
#linkdin_bg,
#whatsapp_bg {
  transition: all 1s ease-in-out;
  stroke: #2C3333 !important;
}

.social-media-sec>a>svg path {
  fill: #2C3333;
}

.social-media-sec>a>svg:hover #facebook_bg {
  fill: #4267B2;
}


.social-media-sec>a>svg:hover path {
  fill: white;
}

.social-media-sec>a>svg:hover #linkdin_bg {
  fill: #0A66C2;
}

.social-media-sec>a>svg:hover #whatsapp_bg {
  fill: #25D366;
}

.social-media-sec>a>#insta_bg>defs {
  display: none;
}

.social-media-sec>a>#insta_bg:hover defs {
  display: inline;
}





.tagline {
  text-align: center;
}

.tagline>h5 {
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 2px dashed var(--primary-color);
  width: 50%;
  margin: auto;
  color: var(--secondary-color) !important;
  /* text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.507); */
}

.border-anime>ul>li {
  text-align: center;
}


.border-anime>ul>li>a {
  position: relative;
  color: #2C3333 !important;
  /* font-size: 1.1rem; */
  font-weight: 500;
  text-transform: capitalize;
  font-size: 0.83rem;
}

.border-anime>ul>li>::before {
  content: "";
  position: absolute;
  /* width: 100%; */
  height: 2px;
  bottom: -1px;
  background-color: var(--primary-color);
  width: 0;
  transition: width 0.3s ease-in-out;
  left: 0%;
}

.border-anime>ul>li>:hover::before {
  width: 100%;
  left: 0;
}

.links h5 {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  /* text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.253); */
}

.links h5::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: -3px;
}

.links ul {
  margin: 0 !important;
  padding: 0 !important;
}

.copywright {
  background-color: #ffffff;
  border-top: 1px solid black;
}

.copywright>h6 {
  margin: 0 !important;
  color: #2C3333 !important;
}

.copywright>h6>a {
  position: relative;
  line-height: normal;
  color: var(--primary-color);
}

.copywright>h6>a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  background-color: var(--primary-color);
  left: 0;
  transition: width 0.3s ease-in-out;
}

.copywright>h6>a:hover::before {
  width: 100%;
}




/* 25.3 subcription */
.form-control.subscribe {
  width: 100%;
  border-radius: 35px;
  border: 0;
  padding: 0 20px !important;
  height: 50px;
}

/* subscribe button */
.btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  border: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  background: #ea5210;
  transition: all linear 0.2s;
}

.btn-subscribe:hover {
  padding-left: 15px;
}

.btn-subscribe:focus {
  outline: 0;
}

/* form section */
.contact-btn {
  background-color: var(--primary-color);
  border-radius: 50px 5px;
  padding: 0.5rem 2.2rem;
  margin: 20px;
  border: white;
  transition: all 0.2s linear;
}

.contact-btn:hover {
  border-radius: 0px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.37);
}

#btnContactUs:hover {
  background-color: var(--secondary-color);
}



.close {
  color: rgb(44, 44, 44);
}

.close:hover {
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.form-control {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2000);
  border: none;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:focus {
  box-shadow: 0 0 0 .15rem #038280bd;
  /* box-shadow: none; */
}

/* back to top button */
.back-to-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 30px;
  font-size: 20px;
  color: #fff;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  transition: all 0.3s ease-in-out;
  /* opacity: 0; */
}

/* .back-to-top:hover {
  border-radius: 5px;
}

.back-to-top:hover.back-to-top i {
  transform: translateY(-5px);
} */

.back-to-top i {
  transition: all 0.3s ease-in-out;
  /* line-height: 50px; */
  color: #fff !important;
}

.back-to-top:hover {
  border-color: #ea5210;
}

.back-to-top:focus {
  outline: 0;
}

/*# sourceMappingURL=maps/style.css.map */
.owl-carousel .owl-nav button.owl-prev {
  background: none;
  color: inherit;
  border: none !important;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  top: 40%;
  width: 30px;
  height: 30px;
  left: 0;
  border-radius: 50%;
  background-color: #ea5210 !important;
  font-size: 20px !important;
  color: #fff !important;
}

.owl-carousel .owl-nav button.owl-next {
  background: none;
  color: inherit;
  border: none !important;
  padding: 0 !important;
  font: inherit;
  position: absolute;
  top: 40%;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ea5210 !important;
  font-size: 20px !important;
  color: #fff !important;

}

.carousel-inner img {
  width: 100%;
  height: 600px;
  ;
}

.btn-outline {
  background: transparent;
  color: #222;
  border: 2px solid #303032 !important;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.mar h1 {
  margin-bottom: 55px;
  font-size: 48px;
  font-weight: 700;
  color: #ea5210;
  font-family: "Poppins", sans-serif;

}

h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

:root {
  --animate-duration: 0.5s;
  --animate-delay: 0.5s;
  --animate-repeat: 0.5s;
}

.btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  padding: 16px 44px;
  border-radius: 35px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
  margin-top: 10px;
  margin-bottom: 5px;
}

.slide_style_left {
  top: 30%;
  margin: 0 auto;
  left: 0;
  position: absolute;
  padding: 10px 150px;
}

.slide-text>h1 {
  display: inline-block;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}

.slide-text>h2 {
  animation-duration: 0.5s;
  animation-delay: 0.5s;
}

.slide-text>a.btn {
  animation-delay: 1.3s;
  animation-duration: 0.5s;
}


@media(max-width: 800px) {
  .navbar .bx-menu {
    font-size: 25px;
    color: #222;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.page-title {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 100px;
  margin-top: 4.2rem;
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}

.about_us_bg {
  position: relative;
  background-image: url("../media/img/about\ us\ img/about us bg.jpg");
  background-size: contain;
}


.breadcrumb {
  background-color: transparent !important;
  justify-content: center;
}

.breadcrumb a {
  position: relative;
}

/* .breadcrumb a::before {
  position: absolute;
  content: "/";
  right: -17px;
  top: 0px;
  height: 15px;
} */

.breadcrumb li,
.breadcrumb a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 10px;
  cursor: pointer;
}

/* .breadcrumb>li+li:before {
  padding: 0 0px;
  color: #ccc;
  content: "";
} */

/*contact*/
.section {
  padding: 100px 0;
}

.about-info ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.about-list .about-li-heading {
  grid-column: 2;
  margin: 1rem 0rem;
}


.section-title {
  margin-bottom: 55px;
  font-size: 20px !important;
  line-height: 1.5;
}

ul {
  list-style-type: none;
  margin: 0px;
}

.mb-30 {
  margin-bottom: 30px;
}

.round-icon {
  height: 70px;
  min-width: 70px;
  max-width: 70px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: center;
  line-height: 70px;
  font-size: 30px;
  color: #ea5210;
  display: inline-block;
}

.font-primary {
  font-family: "Poppins", sans-serif;
}

.box-shadow {
  box-shadow: 0px 10px 35px 0px rgb(0 0 0 / 10%);
}



.h {
  color: #ea5210;
}

.btn {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 16px 44px;
  border-radius: 35px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.iframe {
  width: 100%;
}

@media (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
  .container h4 {
    margin: 0px !important;
    padding: 0px !important;
    font-size: 1.2rem;
  }

  .section {
    padding-top: 50px;
  }

  .round-icon {
    height: 50px;
    min-width: 50px;
    max-width: 40px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    color: #ea5210;
    display: inline-block;
  }
}

.Career.c-aside-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  color: #6c6e70;
  text-transform: uppercase;
  border-bottom: solid 2px currentColor;
  height: 44px;
  line-height: 44px;
}

.Career.c-aside-title a {
  text-decoration: none !important;
  color: inherit;
}

.Career.c-aside-menu {
  font-size: 14px;
  margin-bottom: 16px;
  background: #c9e8ff;
  font-weight: 600;
  color: #3b3c3d;
  list-style: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.Career.c-aside-snippet {
  margin: 0 0 14px;
  color: #005eb8;
}

.Career.c-aside-snippet__headline {
  display: block;
  color: #fff;
  background: #ea5210;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 5px 15px 0em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .2);
  text-decoration: none;
  position: relative;
}

.Career.c-aside-snippet__headline .el-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  height: 100%;
  padding: .83em;
}

.Career.el-icon {
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
}

.Career.c-aside-snippet__contacts {
  list-style: none;
  margin: 0;
}

.Career.base-ul,
.Career ul {
  margin: 0 0 24px;
}

.Career .c-aside-snippet .inter-button {
  background-color: #F77E21;
  width: fit-content;
  border-radius: 10px;
  color: white;
}

.Career .c-aside-snippet .inter-button:hover {
  background-color: #da640a;
}


.Career .c-aside-snippet__contact {
  margin: 2px 0 0;
  background: #fafafa;
  position: relative;
  font-size: 14px;
  padding: 10px 0 10px 0em;
  line-height: 1.5em;
}

.Career .base-li,
blockquote {
  margin-left: 0px;
}

.Career .el-icon {
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
}

.Career .c-aside-snippet__contact-label {
  display: block;
  color: #555;
  margin-bottom: .3em;
}

.Career .c-aside-snippet__contact a {
  text-decoration: none;
  color: #555 !important;
}

.Career .c-aside-snippet__contact .el-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  max-height: 3em;
  height: 100%;
  padding: .64em;
  color: #8d8d8d;
}

.Career .el-icon {
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
}

.Career.c-aside-snippet--orange .c-aside-snippet__headline {
  background: #ea5210;
}

.Career .c-aside-snippet__headline {
  display: block;
  color: #fff;
  background: #ea5210;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 5px 15px 0em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .2);
  text-decoration: none;
  position: relative;
}

.Career a,
a:hover {
  text-decoration: none;
}

.Career .c-aside-snippet__headline .el-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  height: 100%;
  padding: .83em;
}

.Career .career .blink,
.clink {
  border: none;
  font: 700 1.45em open sans, sans-serif;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  background: url(/static/images/btn-question.png) no-repeat #005eb8;
  background-color: #ea5210;
  background-position-x: 0%;
  background-position-y: 0%;
  background-image: url("/static/images/btn-question.png");
  text-shadow: 0 2px 0 rgba(0, 0, 0, .2);
  line-height: 24px;
  white-space: nowrap;
  clear: both;
  -webkit-transition: background-position .3s ease, background .3s ease;
  transition: background-position .3s ease, background .3s ease;
  height: 54px;
  padding: 0 20px 0 74px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.Career #integration-list {
  font-family: rubik, sans-serif;
  width: 96%;
  margin: 0 auto;
  display: table;
}

.Career #integration-list ul {
  padding: 0;
  margin: 20px 0;
  color: #555;
  margin-bottom: 20px;
  font-size: 18px !important;
}

.Career #integration-list ul>li {
  list-style: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 17px;
  overflow: hidden;
}

.Career #integration-list ul:last-child {
  border-bottom: 1px solid #ddd;
}

.Career #integration-list ul>li:hover {
  background: #efefef;
}

.Career .expand {
  display: block;
  text-decoration: none;
  color: #555;
  cursor: pointer;
}

.Career h2 {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.Career span {
  font-size: 15.5px;
}

.Career #left,
#right {
  display: table;
}

.Career #sup {
  display: table-cell;
  vertical-align: middle;
  width: 80%;
}

.Career .career .detail a {
  text-decoration: none;
  color: #C0392B;
  border: 1px solid #C0392B;
  padding: 6px 10px 5px;
  font-size: 14px;
}

.Career .detail {
  margin: 10px 0 10px 0px;
  display: none;
  line-height: 30px;
  height: 150px;
}

.Career .detail span {
  margin: 0;
}

.Career .right-arrow {
  margin-top: 2px;
  margin-left: 20px;
  width: 10px;
  height: 100%;
  float: right;
  font-weight: bold;
  font-size: 20px;
}

.Career .sups p::before {
  content: " ";
  background-color: #ea5210;
  display: block;
  width: 8px;
  margin-left: -23px;
  height: 8px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.london {
  background: url("http://placehold.it/50x50") top left no-repeat;
  background-size: cover;
}

.newyork {
  background: url("http://placehold.it/50x50") top left no-repeat;
  background-size: cover;
}

.paris {
  background: url("http://placehold.it/50x50") top left no-repeat;
  background-size: cover;
}

.details li {
  list-style: square;
  margin-left: 2rem;
}

.soft ul {
  list-style: square;
  color: #666 !important;
  margin-left: 2.5rem;
}

.web ul {
  list-style: square;
  color: #666 !important;
  margin-left: 2rem;
}

.design span {
  color: #bfbfbf;
  font-size: 80px;
}

.design h4 {
  font-weight: bold;
  font-size: 25px;
}

@media screen and (max-width:575px) {
  #services-holder {
    flex-direction: column;
    height: auto;
  }

  .serv-box {
    width: 100%;
    margin: 0.3rem 0.3rem;
    height: 100px;

  }

  .serv-box_active {
    min-height: 400px;
    max-height: 500px;
  }

  .serv-box .serv-box_text_holder h3 {
    transform: rotate(0deg)
  }

  .border-anime>ul>li {
    text-align: left;
  }

  .tagline>h5 {
    font-size: 3vw;
  }

  .copywright h6 {
    font-size: 2.5vw;
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}