/* Fonts */
:root {
  --default-font: "Nunito Sans", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Nunito Sans", sans-serif;
}


:root { 
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #545454; 
  --accent-color: #e96b56; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}


:root {
  --nav-color: #444444;  
  --nav-hover-color: #e96b56; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #e96b56;
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3c3c3c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #565656;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 3px 20px rgb(0 0 0 / .16);
}

.header .topbar {
  background-color: #1b67b1;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #ffffff;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  padding: 6px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 33px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ff932a;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #000000;
	text-transform: capitalize;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #1b68b1;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #1b68b1;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1b68b1;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #1b68b1;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: #f4f5f9;
  font-size: 14px;
  position: relative;
}

.footer-logo img {
    width: 200px;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a.facebook {
    background: #1877F2;
    color: #fff;
}

.social-links a.instagram {
    background: radial-gradient(
    circle farthest-corner at 30% 110%, #ffdb8b 0%, #ee653d 25%, #d42e81 50%, #a237b6 75%, #3e57bc 100%);
    color: #fff;
}

.social-links a.linkedin {
    background: #0077B5;
    color: #fff;
}

.social-links a i{
	border: 0 !important;
    color: #fff !important;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: #ffffff;
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: #000;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #ff932a;
}

.footer .footer-about a {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, #000, transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #000;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-contact a {
    font-size: 15px !important;
    display: flex;
}
.footer .footer-contact p {
    margin-bottom: 15px;
    margin-left: 10px;
	font-size: 16px;
	color: #000;
	font-weight: 400;
	font-family: "Nunito Sans", sans-serif;
}
.footer-links.cont-info p {
    padding: 2px;
    color: #000000;
    width: 90%;
    font-weight: 400;
    font-size: 16px;
}
.footer-links.cont-info p i{margin-right: 10px;}
.php-email-form {
    background: #eee;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #d1cfcf;
}
.php-email-form button {
    background: #000000;
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background-image: url(../img/page-title.jpg);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 110px;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.8;
    content: "";
}

.breadcrumbs ol li a, .breadcrumbs ol li {
    color: #fff;
    position: relative;
}

.page-title h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    position: relative;
	margin-bottom: 20px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

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

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 80vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-height: 400px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 20%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  /* background-color: color-mix(in srgb, var(--background-color), transparent 20%); */
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 95px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  z-index: 3;
}

.hero .carousel-item h2 {
    margin-bottom: 20px;
	margin-top: 15px;
    animation: fadeInDown 1s both;
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1.1em;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: capitalize;
	background: rgb(0 0 0 / 60%);
    border-radius: 10px;
    padding: 16px;
	font-family: "Nunito Sans", sans-serif;
}

.hero .carousel-item h2 span {
  color: #ff932a;
}

.hero .title {
    position: relative;
    display: inline-block;
    line-height: 30px;
    padding: 7px 30px;
    padding-left: 80px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero .title:before{
	position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 40px;
    background-color: #c0db54;
    content: "";
}

@media (max-width: 768px) {
  .hero .carousel-item h2 {
    font-size: 30px;
  }
}

.hero .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
  Color: rgb(255 255 255);
}

.hero ul li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started, .btn-main {
    color: #ffffff;
    background: #ff932a;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px 0;
    animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover, .btn-main:hover {
  background: color-mix(in srgb, #000000, transparent 20%);
  color: #fff;
}

.cta-btn {
    background: #ff932a;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 15%;
  transition: 0.3s;
  opacity: 0.4;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  color: #ffffffs;
  font-size: 48px;
  line-height: 1;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--accent-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

.hero .carousel-indicators li.active {
  opacity: 1;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .carousel-indicators li {
    margin-bottom: 20px;
  }
}

.hero .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .featured {
    margin-top: 0;
  }
}

.hero .featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.hero .featured-item .icon {
  margin-bottom: 10px;
}

.hero .featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.hero .featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.hero .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.hero .featured-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.hero .featured-item:hover h4 a,
.hero .featured-item:hover .icon i,
.hero .featured-item:hover p {
  color: var(--contrast-color);
}

.hero .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 36px;
  font-weight: 500;
  color: #180d03;
  text-transform: capitalize;
}

.about {
    position: relative;
}

.about:before {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../img/about-shape-2.png);
    content: "";
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul, .why-ch .content ul {
  display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    padding-top: 15px;
    padding-left: 0px;
}

.about .content ul li, .why-ch .content ul li {
  padding: 10px 0 0 0;
  display: block;
}

.bh-badge-box {
    display: flex;
    align-items: center;
}

.about .content ul i, .why-ch .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .image2 {
    background-color: #FA6444;
    padding: 16px;
    border-radius: 4px;
    display: inline-block;
    position: absolute;
    bottom: 50px;
    right: 100px;
}

.about .image2 h4 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.about .image2 p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    padding-top: 8px;
	margin-bottom: 0;
}

.heading-t span.span {
    display: inline-block;
    color: #000000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border-radius: 4px;
    background: rgb(255 147 42 / 20%);
    padding: 8px 12px;
    margin-bottom: 16px;
}

.bh-badge-box ul {
    display: flex;
}

.about .bh-badge-box li.image-ab-1, .about .bh-badge-box li.image-ab-2 {
    background-color: #f6f7f4;
    padding: 5px 5px 10px;
}

.about .bh-badge-box li.image-ab-1{
	border-left: 3px solid #1b67b1;
}

.about .bh-badge-box li.image-ab-2{
	border-right: 3px solid #1b67b1;
}

.about .bh-badge-box li.image-ab-1 img, .about .bh-badge-box li.image-ab-2 img {
    width: 100%;
    height: auto;
}
.about .content h5 {
    font-size: 22px;
    font-weight: 700;
    color: #180d03;
    text-transform: capitalize;
	margin: 20px 0;
}
.about .image-box .bg-shape {
    position: absolute;
    left: -40px;
    top: -30px;
    width: 540px;
    height: 540px;
    background-image: url(../img/shape-1.png);
    -webkit-animation: fa-spin 60s infinite linear;
    animation: fa-spin 60s infinite linear;
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.about .image-box .image-1 {
    position: relative;
    height: 495px;
    width: 495px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0px;
    border: 5px solid #ffffff;
}
.about .image-box .image-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.overlay-anim:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.about .image-box .image-2 {
    position: absolute;
    right: 0;
    bottom: 0px;
    margin-bottom: 0;
    border-radius: 50%;
    overflow: hidden;
    height: 309px;
    width: 309px;
    border: 5px solid #ffffff;
}
.about .image-box .image-2 img {
    width: 100%;
}

/*--------------------------------------------------------------
# AI Section
--------------------------------------------------------------*/
.ai-img {
    position: relative;
    overflow: hidden;
}
.ai-img img {
    width: 95%;
}
.ai-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}
.what-do h2 {
    font-size: 32px;
    font-style: normal;
    line-height: 46px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: 10px;
    position: relative;
    text-align: left;
}
.text-black {
    color: #111121 !important;
    font-weight: 400;
}
.list-icon-2 li {
    padding-left: 20px;
    position: relative;
    font-weight: 400;
    color: #111121;
}
.custom-li li {
    float: left;
    margin-bottom: 15px;
    width: calc(100% / 2);
}
.list-icon-2 li:before {
    content: "";
    background: #ff7810;
    position: absolute;
    top: 14px;
    left: 0;
    width: 10px;
    height: 2px;
    border-radius: 4px;
}
.what-do {
    background: #fff;
}

/*--------------------------------------------------------------
# Services New Section
--------------------------------------------------------------*/
.services-section-four {
    background-color: #ffffff;
    padding: 60px 0 60px;
    position: relative;
    z-index: 1;
	background-image: url(../img/service-bg.jpg);
}

.heading-m h3 {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
}

.service-block-six {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.service-block-six .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 0px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-six .inner-box:hover {
    -webkit-box-shadow: 0 3px 15px rgb(62 50 50 / 7%);
    box-shadow: 0 3px 15px rgb(62 50 50 / 7%);
}

.service-block-six .icon-box {
    display: inline-block;
    margin-bottom: 25px;
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translate(-50%, -50%);
}

.services-info {
    padding: 35px 20px 35px 20px;
	text-align: center;
}

.service-block-six .inner-box .icon {
    border-radius: 50%;
    color: #fff;
}
.service-block-six .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: #fae4de;
    color: #fff;
    font-size: 58px;
    font-weight: 900;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.service-block-six .inner-box:hover:before {
    height: 0;
}

.service-block-six .title {
	position: relative;
	margin-bottom: 10px;
    line-height: 30px;
	font-size: 20px;
	font-weight: 700;
}

.title a {
    Color: #000;
	text-transform: capitalize;
}

.service-block-six .text {
    font-size: 15px;
    line-height: 24px;
    position: relative;
	Color: #808287;
	height: 50px;
}

.service-block-six .inner-box .icon img {
    width: 30px;
}

.inner-box .service-img {
    height: 209px;
    object-fit: cover;
}

.service-block-six .circles-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.service-block-six .circles-box .circle-one {
    position: absolute;
    left: 0px;
    bottom: 8px;
    width: 12px;
    height: 12px;
    z-index: 1;
    border-radius: 50%;
    background-color: #ff932a;
}

.service-block-six  .circles-box .circle-two {
    position: absolute;
    top: 8px;
    right: 0px;
    width: 12px;
    height: 12px;
    z-index: 1;
    border-radius: 50%;
    transition: .5s;
    opacity: 1;
    visibility: visible;
    background-color: #2b2a29;
}

.btn-main.service-btn {
    margin-bottom: 0;
    margin-top: 65px;
    padding: 10px 25px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-sidebar {
    position: relative;
    display: block;
    width: 100%;
}

.service-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
	text-transform: capitalize;
}

.service-list li a:hover, .service-list li a.current {
    color: #fff;
    background-color: #ff932a;
    /* padding-left: 80px; */
}

.service-list li a {
    position: relative;
    display: block;
    font-size: 18px;
    color: var(--headings-color);
    font-weight: 600;
    background-color: #fff;
    padding: 17px 20px 17px 50px;
    -webkit-box-shadow: 20px 5px 20px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 20px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.service-list li a:hover i, .service-list li a.current i {
    width: 30px;
    color: #fff;
    background-color: #000000;
}

.service-list li i {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 100%;
    background-color: #f6f4ec;
    text-align: center;
    font-size: 16px;
    color: #707582;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-list ul {
    padding-left: 0;
}

.why-ch {
    background-color: #fff;
}

.why-ch ul {
    display: flex;
    flex-wrap: wrap;
}

.why-ch .image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.why-ch .image-box .image-1 {
    position: relative;
    margin-right: 20px;
    margin-bottom: 0;
	z-index: 9;
}

.why-ch .image-box .image-1::before {
    position: absolute;
    top: -10px;
    left: -10px;
    height: 100%;
    width: 150px;
    background-color: #ff932a;
    content: "";
    z-index: -1;
    border-radius: 10px;
}

.why-ch .image-box .image-1 img {
    border-radius: 10px;
}

.why-ch .image-box .image-2 {
    position: relative;
    margin-bottom: 0px;
	z-index: 9;
}

.why-ch .image-box .image-2::before {
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 100%;
    width: 150px;
    background-color: #ff932a;
    content: "";
    z-index: -1;
    border-radius: 10px;
}

.slide-bottom {
    animation: slideBottomAnimation both;
    animation-timeline: view();
    transition: 0.6s;
}

@keyframes slideBottomAnimation {

    0% {
		transform: translateY(100px);
		opacity: 0;
		overflow: hidden;
		transition: .6s;
	}

	50% {
		transform: translateY(0px);
		opacity: 1;
		transition: .6s;
	}

}

.cta-area {
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	border-top: 5px solid white;
}

.cta-area::before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
	border-radius: 15px;
    position: absolute;
    background: color-mix(in srgb, #000000, transparent 50%);
}

.cta-area h2 {
    margin-bottom: 50px;
}

.fs-50 {
    font-size: 50px;
}

.slide-right {
    animation: slideRightAnimation both;
    animation-timeline: view();
    transition: 0.6s;
}

@keyframes slideRightAnimation {

    0% {
		transform: translateX(-100px);
		opacity: 0;
		transition: .6s;
	}

	50% {
		transform: translateX(0px);
		opacity: 1;
		transition: .6s;
	}

}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.fix {
    overflow: hidden;
}

.feature-section {
    position: relative;
	background: rgb(255 147 42 / 10%);
}
.feature-section .shape-image {
    position: absolute;
    top: 0;
    left: 0;
}
.single-feature-items {
    padding: 7px 11px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
.single-feature-items::before {
    position: absolute;
    right: 0;
    width: 20%;
    height: 100%;
    bottom: 0;
    top: 0;
    content: "";
    background-color: #eee;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.single-feature-items .content span {
    text-transform: uppercase;
    font-size: 14px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
}
.single-feature-items .icon {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    text-align: center;
    margin-right: 0px;
}
.single-feature-items .icon img {
    width: 22px;
}
p.indus-cta {
    text-align: center;
    font-size: 30px;
    color: #000;
    font-weight: 800;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*--------------------------------------------------------------
# Case Studies Section
--------------------------------------------------------------*/
.case-studies {
    position: relative;
    background-image: url(../img/pattern-25.jpg);
    background-size: cover;
}
.news-block {
    position: relative;
    margin-bottom: 30px;
}
.news-block .inner-box {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.news-block .image-box {
    position: relative;
}
.news-block .image-box .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.news-block .image-box .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.news-block .image-box .image a:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}
.news-block .content-box {
    background-color: #fff;
    border: 1px solid #e6e8ed;
    border-bottom: 0;
    padding: 25px 30px 10px;
    position: relative;
}
.news-block .content-box .title {
    margin-bottom: 0;
}
.news-block .bottom-box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f4f5f8;
    border: 1px solid #e6e8ed;
    border-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 40px;
}
.news-block .bottom-box .read-more {
    font-size: 12px;
    line-height: 30px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.1em;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
}
.news-block h4.title a {
    font-size: 22px;
    font-weight: 700;
}
.news-block h4.title {
    margin-bottom: 13px !important;
}
.content-box p a {
    color: #1b68b1;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

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

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    background-color: #f9f9f9;
    padding: 60px 0 60px;
    position: relative;
    z-index: 1;
}

.clients .swiper-slide img, .clients img {
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
  border: 2px solid #ff932a;
  padding: 7px;
}

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

.clients .swiper-wrapper {
  height: auto;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #1b68b1;
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

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

.testimonials {
    position: relative;
	background: url(../img/testi-bg.jpg);
}

.testimonials .c-shape {
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.2;
    position: absolute;
	width: 60%;
}

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

/*--------------------------------------------------------------
# Free Consultation Section
--------------------------------------------------------------*/
.schedule-area {
    padding-top: 150px;
	padding-bottom: 120px;
	background-color: #fff;
}

.schedule-area .sechudule-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.schedule-area .sechudule-image .card {
    top: -60px;
    left: 30px;
    right: 30px;
    position: absolute;
    padding: 40px 40px;
	border: 1px solid #f1f1f1;
}

.slide-left {
    animation: slideLeftAnimation both;
    animation-timeline: view();
    transition: 0.6s;
}

@keyframes slideLeftAnimation {

    0% {

      transform: translateY(100px);
	  opacity: 0;
	  transition: .6s;

    }

	50% {

        transform: translateX(0px);
		opacity: 1;
		transition: .6s;

    }

}

.schedule-area .sechudule-image .card h4 {
    font-weight: 700;
	font-size: 30px;
    color: #000;
}

.schedule-area .sechudule-image .card ul li {
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
}

.schedule-area .consultation-form {
    padding: 50px 50px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #ff932a !important;
}

.consultation-form {
    margin-top: -60px;
    margin-bottom: -60px;
    padding: 100px 50px;
    position: relative;
	border-radius: 15px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.35);
} 

.consultation-form h3 {
    text-align: center;
    color: #fff;
	font-size: 28px;
}

.schedule-area .consultation-form input.form-control {
    margin-bottom: 20px;
    background: #fff;
	color: #ffffff;
	height: 60px;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 10px;
}
.schedule-area .consultation-form .form-select {
    height: 60px;
    border: none;
    color: #000;
    background: #fff;
	padding: 20px;
}
.consultation-form textarea.form-control {
    height: 160px;
	padding-top: 10px;
}

.c-btn .default-btn {
    color: #fff;
    background: #000000;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 50px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px 0;
    animation: fadeInUp 1s both 0.4s;
    border: 0;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
    background-color: #fff;
    padding: 60px 0 60px;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  padding: 10px 28px;
  border-radius: 7px;
  background: #ebe9e9;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: #000000;
    background: #ff932a;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

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

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 1;
  position: relative;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgb(255 245 235);
  padding: 18px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: relative;
  bottom: 0px;
  text-align: left;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgb(0 0 0);
  margin-bottom: 0;
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #000000;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: auto;
  right: 12px;
  font-size: 34px;
  line-height: 0;
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.04);
}



/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.skills{
	position: relative;
}
.skills:before {
    background-image: url(../img/pattern-21.png);
    background-repeat: no-repeat;
    background-position: right top;
    content: "";
    height: 100%;
    position: absolute;
    top: -229px;
    right: -500px;
    width: 100%;
}
.faq-img {
    width: 100%;
    margin-right: 30px;
}

.accordion {
    position: relative;
	margin-top: 0px;
}

.accordion-button:not(.collapsed) {
    color: #000000;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    background-color: #ff932a;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# About CEO Section
--------------------------------------------------------------*/

.about-ceo-sec {
    background-size: cover;
    background-position: center;
    padding-bottom: 180px;
    background: #f6f3ee;
}
.about-ceo-sec {
    position: relative;
}
.about-ceo-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 400px;
    background-image: url(https://brandhype.in/wp-content/themes/bptheme/assets/images/line.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.about-ceo-sec .sec-title .title2 {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
}
.about-ceo-sec .sec-title h2 {
    color: #1b67b1;
    font-size: 25px;
	font-weight: 700;
}
.about-ceo-sec .image img {
    border-radius: 100%;
    border: 5px solid #1b67b1;
    border-top: 0px;
    border-right: 0px;
}
.about-ceo-sec .fws {
    border: 20px solid #f1ece6;
    padding: 20px;
    background: #fff;
	margin-bottom: 40px;
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 30px;
  background: #dce3e9;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 7px;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
  font-family: 'Nunito Sans';
}

.blog-posts .title a {
  color: #000;
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: #ff932a;
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: left;
}

.blog-posts .content .read-more a {
  background: #000000;
    color: #ffffff;
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, #000000, transparent 20%);
    color: #fff;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
  padding-top: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
  text-transform: capitalize;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff932a;
  color: #000;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

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

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

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

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

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

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

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

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

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

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

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

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #1866af;
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: #000;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 20px 20px 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: #ff932a;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted #ff932a;
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  margin-left: 15px;
}

.contact .info-item p, .contact .info-item h3 span {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #ff932a;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #000000, transparent 20%);
}

select.form-control {
    color: #c7c7c7;
    font-size: 14px;
	appearance: auto;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.single-case_study h2 {
    float: left;
    width: 100%;
	font-weight: 700;
	margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 26px;
    border-bottom: 2px solid #bbd757;
}
.single-case_study .container .col-md-12.mt-3 p {
    display: block;
    width: 100%;
    float: left;
}
.portfolio-info ul li a {
    color: #1866af;
}
.inpg-career-item-discription .h4 {
    padding-bottom: 20px;
	font-weight: 700;
}
.inpg-career-item.policypagebh .inpg-career-item-list {
    margin: 0px;
}
.inpg-career-item.policypagebh ul {
	display: flex;
    align-items: normal;
}
.policypagebh .inpg-career-item-list ul li {
    width: 20%;
    min-height: 90px;
    margin-bottom: 0px;
}
.policypagebh .inpg-career-item-list ul li strong {
    display: block;
}
.inpg-career-item.policypagebh .inpg-career-item-list li a {
    color: #000;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 30px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

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

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.innerpage-content h3, .innerpage-content h2 {
    font-weight: 700;
}
.innerpage-content h3, .innerpage-content h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 26px;
    border-bottom: 2px solid #ff932a;
    Color: #000000;
}
.inpg-career-item {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E0E6F7;
    position: relative;
    background: #f8faff;
    margin-bottom: 70px;
}
.inpg-career-item-title {
    margin-top: -53px;
    margin-bottom: 30px;
}
.inpg-career-item-title a {
    color: #ffffff;
    background: #000000;
    display: inline-block;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.inpg-career-item-list {
    margin-bottom: 30px;
}
.inpg-career-item-list ul {
    align-items: normal;
}

.inpg-career-item-list ul {
    display: flex;
    align-items: center;
	padding-left:0;
}
.inner-maincontent ul {
    margin-bottom: 20px;
}
.inpg-career-item-list ul li {
    background-color: #eff3fc;
    font-size: 15px;
    padding: 7px 10px;
    border-radius: 5px;
    color: #4f5e64 !important;
    margin-right: 10px;
	list-style: none;
}
.inner-maincontent ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
.inpg-career-item-dic-text ul {
    margin-bottom: 20px;
}
.digi-img img {
    width: 95%;
    border-radius: 50%;
	border: 3px solid #ff932a;
}
.service-h {
    height: 120px;
	text-align: left;
}

@media (max-width: 767px) {
  .about .content h3 {
    font-size: 25px;
  }
  .heading-m h3 {
    font-size: 25px;
  }
  p {
    text-align: justify;
	font-size: 14px;
  }
  .why-ch ul {
    display: block;
  }
  .single-feature-items .icon{
	margin-right: 10px;
  }
  p.indus-cta{
	font-size: 16px;
	display: block;
  }
  .hero .btn-get-started, .btn-main{
	padding: 10px 25px;
	font-size: 12px;
  }
  .about-ceo-sec .sec-title h2{
	font-size: 30px;
  }
  .about-ceo-sec .sec-title .title2 {
    font-size: 18px;
  }
  .cta-area {
    padding-top: 45px;
    padding-bottom: 45px;
	margin-top: -55px;
  }
  .cta-area h2 {
    margin-bottom: 10px;
  }
  .fs-60 {
    font-size: 20px;
  }
  .portfolio .portfolio-filters li {
    margin-bottom: 10px;
  }
  section, .section{
	padding: 40px 0;	
  }
  .section-title {
    padding-bottom: 20px;
  }
  .accordion-button {
    font-size: 14px;
  }
  .hero .title{
	padding: 2px 15px;
    padding-left: 60px;
	font-size: 12px;
  }
  .hero .title:before{
	left: 10px;
  }
  .hero .carousel-container {
    inset: 90px 55px 64px 65px;
  }
  .hero .carousel {
    min-height: 60vh;
  }
  .about {
    padding-top: 0;
  }
  .bh-badge-box {
    display: block;
  }
  .hero.section {
    padding-top: 0;
  }
  .about-ceo-sec .fws{
	margin-left: 10px;
    margin-right: 10px;
	text-align: center;
  }
  .about-ceo-sec .image img{
	width: 200px;
    height: 200px;
  }
  .header .logo img {
    max-height: 24px;
  }
  .about .image-box .bg-shape{
	  display: none;
  }
  .about .image-box .image-1 {
    height: 100%;
    width: 100%;
  }
  .about .image-box .image-2{
	height: 279px;
    width: 279px;
	bottom: -39px;
  }
  .why-ch figure img {
    width: 100%;
	}
	.why-ch .content ul{
		display: block;
	}
	.fs-50 {
		font-size: 20px;
	}
}

.enquire-form {
    position: fixed;
    top: 50%;
    right: -47px;
    z-index: +9999;
}
.enquire-form .thm-btn {
    padding: 11px 20px;
    font-size: 15px;
    border-radius: 10px 10px 0 0;
    background: #ff932a;
    color: #ffffff;
    font-weight: 600;
    margin-left: 10px;
    border: none;
    position: relative;
    transform: rotate(-90deg);
    text-transform: uppercase;
}
.bookcall .modal-body {
    background: #ff932a;
}
.bookcall .modal-title {
    color: #000;
    font-weight: 600;
	text-align: center;
    width: 100%;
    text-transform: uppercase;
}
.bookcall select.form-control {
    color: #212529;
}
.bookcall .btn {
    background: #000;
    color: #fff;
}
.bookcall .modal-body input, .bookcall .modal-body select {
    margin-bottom: 10px;
    height: 40px;
}
.bookcall .modal-body textarea {
    margin-bottom: 10px;
}
.bookcall .modal-body {
    background: #ff932a;
    border-radius: 0 0 7px 7px;
}
.bookcall form {
    text-align: center;
}
.bookcall {
    justify-content: center;
    align-items: center;
    display: flex !important;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
	z-index:-1;
}
.bookcall.show {
    z-index: +99999;
}
.contact input::placeholder {
  color: red !important;
}
