
/* 
    Project: laniconsulting.ng
    Author: alaid_technologies Ltd.
    Created on: 2024-09-07
    Description: Lani Consulting, based in Nigeria, is a premier consulting firm dedicated to providing innovative and strategic 
    solutions to businesses across diverse industries. As trusted advisors, we specialize in transforming challenges into opportunities,
     driving sustainable growth, and fostering enduring client relationships. .
*/

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff;
  --default-color: #212529; 
  --heading-color: #a96705; 
  --accent-color: #141814; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: rgba(255, 255, 255, 0.6);  
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #97fa8a; 

    /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
}


.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #050a12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1b1c1e;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.int-section{
  height: 400px;
}

@media only screen and (min-width: 990px) {
  .int-section{
    /* height: 0 !important; */
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--heading-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.cs-secondary{
  color: #a96705;
}

.cs-text{
  font-size: 13px;
  text-align: justify;
   word-spacing: -1px;
  /*text-justify: inter-word; */
  /* font-family: Lato; */
  /* font-weight: 300; */
  font-style: normal;
}

.text-justify{
  text-align: justify !important;
  text-justify: inter-word;
  letter-spacing: 0.6;
  padding: 3pt;
}

.custom-gutter {
  margin-right: -302px;
}

.nt-spacer{
  margin-top: -73px;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.alaid-shadow-1{
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  border-radius: 7pt;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1c1c1c;
  padding: 10px 0;
  font-size: 13px;
  color: #9b9b9b;
}

#topbar .contact-info i {
  font-style: normal;
  color: #8fc04e;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #8fc04e;
}

#topbar .social-links a {
  color: #9b9b9b;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}


/*--------------------------------------------------------------
# alaid-header
--------------------------------------------------------------*/

.header {
  min-height: 70pt;
}

#alaid-header .logo h1 {
  font-size: 38px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

#alaid-header .logo h1 a,
#alaid-header .logo h1 a:hover {
  color: #3c4133;
  text-decoration: none;
}

#alaid-header .logo img {
  padding: 5px;
  margin: 0;
  max-height: 78px;
}

*/ .navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: stretch;
}

.navbar li {
  position: relative;
}

.navbar a {
  color: #026a3f !important;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 40px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
  height: 100%;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #c57b0d !important;
}

.navbar a i {
  color: #e18d0e !important;
}

.navbar .bi {
  font-weight: 800 !important;
}

/* dropdown 1 */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: -28px;
  top: calc(100% + 0);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 7px #fcf7f7;
  transition: transform 300ms ease-out;
  /* border-radius: 4px; */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown a{
  color: #111;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: justify;
  color: #026a3f;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #8fc04e;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  /* top: 100%; */
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  /* left: calc(100% - 30px); */
  /* visibility: hidden; */
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

}




/* dropdown 2 */

.dropdown-menu {
  width: 980px;
  position: absolute;
  top: 100%;
  left: 55%;
  transform: translate(-50%);
  /* z-index: 99; */
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  /* background-color: #fff; */
  border: none !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0px 0px 7px #fcf7f7;
  transition: all 5s ease;
}

.dropdown-hover:hover>.dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 250;
}

.dropdown-hover>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.dropdown .dropdown-menu a {
  font-size: 13px !important;
  font-weight: 600 !important;
  /* margin-left: -29px; */
}

.ac-bold{
  font-weight: 500 !important;
}

.n-ml-spacer{
  margin-left: -20px;
}

.nav-item {
  padding: 0.5rem 0xp;
}

.dropdown-menu .container{
  margin-bottom: -20px;
}

hr {
  margin: 0.4rem 0 !important;
}


@media (max-width: 764px) {
  .dropdown-menu { 
    width: 100%;
    position:relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10px);  
  }

  .dropdown .dropdown-menu a {
    margin: 0;;
  }

  .header {
    min-height: 60pt;
  }

  #alaid-header .logo img {
    max-height: 58px;
  }

  .navbar a,
.navbar a:focus {
  height: 8% !important;
}

.h5-sm{
  display: block;
  font-size: 1.2em;
  margin-top: 1em !important;
  margin-bottom: 1em !important;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.n-ml-spacer{
  margin: 0;
}
body{
  font-size: 10pt !important;
}

.section-title {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #026a3f;
  /* background-color: #141611; */
  margin-top: 34px;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  color: #fff;
  top: -14px;
  right: 16px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 0;
  border: 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #026a3f;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #c57b0d;
}

.navbar-mobile .joinus,
.navbar-mobile .joinus:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px -6px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  /* background: #fff; */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #026a3f;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #c57b0d;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

@media (max-width: 768px) {
  .top-header{
    display: none !important;
  }
}


.btn-outline-success {
  color: #c57b0d;
  border-color: #c57b0d;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #c57b0d;
  border-color: #c57b0d;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 155, 64, 0.5);
}

.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #ef853a;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #e3661d;
  border-color: #e3661d;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 155, 64, 0.5);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


.footer {
  color: var(--default-color);
  background-color: #000103;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .h3 {
 color:#26d48c !important;
}
.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #94c045;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(60, 65, 51, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(60, 65, 51, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #c0da91;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #94c045;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #94c045;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(60, 65, 51, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  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;
  }
}


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: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 0 0;
}

.hero .hero-bg {
  position: absolute;
  background: #070505;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after{
  background: #070505;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0 25px;
}

.hero form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}


.bg-img{
  background-image: url('../img/pattern.jpg') !important;
  /* margin-left: -148.5px; */
}


/*********************************
6. Contact Map
*********************************/

.map-location{
	margin-bottom: -179px !important;
  }
  
  ul.social-network {
	  list-style: none;
	  display: inline;
	  margin-left:0 !important;
	  padding: 0;
  }
  ul.social-network li {
	  display: inline;
	  margin: 0 5px;
  }
  
  
  /* social icons */
  .social-network a.icon-instagram:hover {
	  background-color: #c13584;
  }
  .social-network a.icon-facebook:hover {
	  background-color:#3B5998;
  }
  .social-network a.icon-twitter:hover {
	  background-color:#33ccff;
  }
  .social-network a.icon-youtube:hover {
	  background-color:#BD3518; 
  }
  .social-network a.icon-linkedin:hover {
	  background-color:#007bb7;
  }

  icon-linkedin
  .social-network a.icoRss:hover i, .social-network a.icon-facebook:hover i, .social-network a.icon-twitter:hover i,
  .social-network a.icon-youtube:hover i, .social-network a.icoVimeo:hover i, .social-network a.icon-linkedin:hover i {
	  color:#fff;
  }
  a.socialIcon:hover, .socialHoverClass {
	  color:#44BCDD;
  }
  
  .social-circle li a {
	  display:inline-block;
	  position:relative;
	  margin:0 auto 0 auto;
	  -moz-border-radius:50%;
	  -webkit-border-radius:50%;
	  border-radius:50%;
	  text-align:center;
	  width: 50px;
	  height: 50px;
	  font-size:20px;
  }
  .social-circle li i {
	  margin:0;
	  line-height:50px;
	  text-align: center;
  }
  
  .social-circle li a:hover i, .triggeredHover {
	  -moz-transform: rotate(360deg);
	  -webkit-transform: rotate(360deg);
	  -ms--transform: rotate(360deg);
	  transform: rotate(360deg);
	  -webkit-transition: all 0.2s;
	  -moz-transition: all 0.2s;
	  -o-transition: all 0.2s;
	  -ms-transition: all 0.2s;
	  transition: all 0.2s;
  }
  .social-circle i {
	  color: #fff;
	  -webkit-transition: all 0.8s;
	  -moz-transition: all 0.8s;
	  -o-transition: all 0.8s;
	  -ms-transition: all 0.8s;
	  transition: all 0.8s;
  }
  
  .social-icons {
   background-color: #D3D3D3;   
  }
  

.contact_container
{
	width: 100%;
	background: #FFFFFF;
	/* padding-top: 30px; */
	padding-bottom: 98px;
}

.contact_info_title
{
	display: inline-block;
	font-size: 18px;
	color: #000000;
	font-weight: 500;
	line-height: 1.4;
	border-bottom: solid 2px #eb4141;
}

.contactus {
  /* background-image: url('../img/features-3.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 75px 0 45px 0; */
  /* padding: 30pt; */
}

.contactus .card{
  padding: 20pt;
}


/*--------------------------------------------------------------
# Company history Section
--------------------------------------------------------------*/
.companySummary{
  display: flex;
margin-top: 30px;
flex-direction: row;
flex-wrap: wrap;
}


#companyFacts .fullWidth{
padding: 0;
}

.companySummary .item{
width: 25%;
height: 250px !important;
padding: 12px 0px;
text-align: center;
}

/* .companySummary .item {
  background-color: #116d46;

} */

.companySummary .item:nth-child(1){
background: #1c1c1c;
}

.companySummary .item:nth-child(2){
background: #111;
}

.companySummary .item:nth-child(3){
background: #1c1f18;
}

.companySummary .item:nth-child(4){
background: #111;
}

.companySummary .item p.number{
font-size: 24px;
padding: 0;
font-weight: bold;
}

.companySummary .item p{
color: rgba(255, 255, 255, 0.8);
font-size: 12px;
margin: 0;
padding: 10px;
font-family: 'Open Sans';
}


.companySummary .item span{
width: 60px;
background: rgba(255, 255, 255, 0.8);
height: 2px;
display: block;
margin: 0 auto;
}


.companySummary .item i{
vertical-align: middle;
font-size: 84px;
color: rgba(255, 255, 255, 0.8);
}


.companySummary .item:hover i, .companySummary .item:hover p{
color: white;
}

.companySummary .item:hover span{
background: white;
}

@media (max-width: 786px){
.companySummary .item {
   flex: 0 0 50%;
}
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
/* .featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
} */

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.intro .content ul {
  list-style: none;
  padding: 0;
}

.intro .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.intro .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.intro .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.intro .content ul p {
  font-size: 15px;
}

.intro .content p:last-child {
  margin-bottom: 0;
}

.intro .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.vc_custom_heading {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 30px;
  text-transform: none;
  color: #333333;
  margin-bottom: 0;
}

.vc_custom_heading ::after{
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1px;
  color: #000000;
}

.thsn-ihbox-heading {
  margin-bottom: 40px;
  padding-bottom: 1px;
}




/*--------------------------------------------------------------
# what-we-offer Section
--------------------------------------------------------------*/
.what-we-offer .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.what-we-offer .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.what-we-offer .card .card-img img {
  transition: 0.3s ease-in-out;
}

.what-we-offer .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.what-we-offer .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.what-we-offer .card a:hover {
  color: var(--accent-color);
}

.what-we-offer .card p {
  padding: 7px;
  margin-bottom: 30px;
  text-align: justify;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.what-we-offer .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# How we work Section
--------------------------------------------------------------*/
.how-we-work {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.how-we-work img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.how-we-work:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.how-we-work .container {
  position: relative;
  z-index: 3;
}

.how-we-work h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.how-we-work p {
  color: var(--default-color);
}

.how-we-work .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.how-we-work .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# section-one Section
--------------------------------------------------------------*/
.section-one .section-one-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.section-one .section-one-item+.section-one-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .section-one .section-one-item+.section-one-item {
    margin-top: 40px;
  }
}

.section-one .section-one-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.section-one .section-one-item ul {
  list-style: none;
  padding: 0;
}

.section-one .section-one-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.section-one .section-one-item ul li:last-child {
  padding-bottom: 0;
}

.section-one .section-one-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.section-one .section-one-item p:last-child {
  margin-bottom: 0;
}

.awards-section {
  display: none;
}
.title-z{
  font-size: 18pt;
}

.m-space-30{
  margin-bottom: -40px;
}

@media (max-width: 786px){
  .mobile-screen-lg{
    display: none !important;
  }

  .mobile-screen {
    padding-top: 60px;
    display: block !important;
  }

  .mobile-screen .section-header {
    margin-bottom: 40px;
  }
  
  .mobile-screen .mobile-screen-carousel,
  .mobile-screen .mobile-screen-slider {
    overflow: hidden;
  }
  
  .mobile-screen .abrs-container {
    /* text-align: center; */
  }
  
  .mobile-screen .abrs-container .abrs-img {
    width: 300px;
    /* border: 4px solid #fff; */
    border-radius: 9pt;
    box-shadow: 0px 2px 15px rgba(141, 250, 119, 0.1);
    margin: 0 auto;
  }
  
  .mobile-screen .abrs-container h3 {
    font-size: 9px !important;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #444444;
  }
  
  .mobile-screen .abrs-container h4 {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 15px 0;
  }
  
  .mobile-screen .abrs-container .card {
    max-width: 350px;
  }

  .mobile-screen .abrs-container .quote-icon-left,
  .mobile-screen .abrs-container .quote-icon-right {
    color: #c0da91;
    font-size: 26px;
    line-height: 0;
  }
  
  .mobile-screen .abrs-container .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .mobile-screen .abrs-container .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .mobile-screen .abrs-container p {
    /* font-style: italic; */
    margin: 0 auto 15px auto;
  }
  
  .mobile-screen .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .mobile-screen .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #94c045;
  }
  
  .mobile-screen .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #94c045;
  }

  .section-title .title-style-2 {
    font-size: 21px;
  }
  .title-z{
    font-size: 15pt;
  }

  .section-title p {
    margin-bottom: 6px;
  }
  
}


.awards-section-lg {
  padding-top: 60px;
}

.awards-section-lg .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.awards-section-lg .swiper-slide img:hover {
  opacity: 1;
}

.awards-section-lg .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.awards-section-lg .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #94c045;
}

.awards-section-lg .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #94c045;
}


/*** Project Start ***/

.project-img {
  position: relative; 
  padding: 15px;
}

.project-img::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  background: #000000;
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: .5s;
}

.project-img::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #059652;
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: .5s;
}

.project-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.project-content a {
  display: inline-block;
  padding: 20px 25px;
  background: #020e08;
  color: #fff;
  border-radius: 10px;
}


.project-item:hover .project-content {
  opacity: 1;
  transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
  opacity: 0;
}

/*** Project End ***/


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-heading {
  background: linear-gradient(3deg, rgb(6 3 3 / 98%), rgb(10 10 9 / 38%)), url('../img/bg-section.jpg') no-repeat center;
  background-size: cover;
  max-height: 150px;
  color: #fff;
  padding: 25px 15px;
  margin: 95px 0 68px 0;

}



/*********************************
5. page-header-bg
*********************************/

.page-header-bg{
  background: linear-gradient(3deg, rgba(4, 142, 65, 0.74), rgba(0, 32, 18, 1)), url('../img/bg-section.jpg') no-repeat center;
  background-attachment: fixed;
  background-size:cover;
  color: #fff;
  height: 350px;
}

.page-header-bg .intro{
  margin-top: 116px;
}

.page-header-bg .intro p{
  font-size: 13pt;
}

.box{
  border: none;
  position: relative;
  text-align: center;
  border-radius: 7pt;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
.box:after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease 0s;
}
.box:hover:after{
  background-color: rgba(19, 54, 2, 0.623);
}
.box img{
  width: 100%;
  height: auto;
}
.box .title{
  width: 100%;
  padding: 12px 10px;
  margin: 0;
  position: absolute;
  top: 35%;
  left: 0;
  font-size: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: all 0.5s ease 0s;
}
.box:hover .title{
  top: 15%;
}
.box .box-content{
  width: 90%;
  height: 90%;
  border: 1px solid #fff;
  position: absolute;
  top: 5%;
  left: 5%;
  padding: 20px;
  opacity: 0;
  z-index: 1;
  transform: scale(0);
  transition: all 0.5s ease 0s;
}
.box:hover .box-content{
  opacity: 1;
  transform: scale(1);
}
.box .box-content:hover{
  box-shadow: 0 0 20px #fff;
}
.box .description{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 17px;
  /* font-weight: 600; */
  /* letter-spacing: 0.09rem; */
  color: #fff;
  line-height: 24px;
  position: relative;
  top: 30%;
}

.box-content .link {
margin-top: 105px;
}

@media only screen and (max-width: 990px) {
  .box{ margin-bottom: 20px; }
}
@media only screen and (max-width: 359px) {
  .box .box-content{ padding: 5px; }
  .box .title{
      font-size: 22px;
      padding: 5px;
  }
  .box .description{
      line-height: 18px;
  }
}


@media (max-width: 766px) {
  .page-header-bg{
    height: 400px;
  }

  .page-header-bg .intro{
    margin-top: 86px;
  }

  .who-we-are .card {
    padding: 8pt !important;
  }

  .who-we-are h2 {
    font-size: 20px;
  }


  .page-header-bg .intro p {
    font-size: 12pt;
  }

  .custom-gutter {
    margin-right: -166px !important;
  }

  .box .description{
    font-size: 15px;
  }
}

@media (width: 820px) {
  .custom-gutter {
    margin-right: -166px !important;
  }
}

@media (width: 1024px) {
  .custom-gutter {
      margin-right: -222px !important;
  }
}

@media (width: 768px) {
  .custom-gutter {
      margin-right: -355px !important;
  }
}

@media (max-width: 344px) {
  .custom-gutter {
    margin-right: -150px !important;
  }
}

@media (max-width: 375px) {
  .custom-gutter {
    margin-right: -157px !important;
  }
}

@media (width: 912px) {
  .custom-gutter {
    margin-right: -205px !important;
  }
}

@media (width: 540px) {
  .custom-gutter {
    margin-right: -243px !important;
  }
}

@media (width: 853px) {
  .custom-gutter {
    margin-right: -192px !important;
  }
}

.who-we-are {
  background-image: url('../img/pattern.jpg');
  background-attachment: fixed;
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  margin-bottom: 75px 0 45px 0;
  /* padding: 30pt; */
}

.who-we-are .card{
  padding: 15pt;
}

.about-lg {
  display: block;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-section-area .members {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}
.team-section-area .members:hover {
  -webkit-box-shadow: 0 0 6px 5px #ddd;
  box-shadow: 0 0 6px 5px #ddd;
  border-radius: 6px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid #dee2e6;
}
.team-section-area .members .spk-img {
  position: relative;
}
.team-section-area .members .spk-img:before {
  background: rgba(20, 17, 12, 0.8);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 5;
}
.team-section-area .members .spk-img:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.team-section-area .members .spk-img img {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.team-section-area .members .spk-img ul {
  position: absolute;
  display: inline-block;
  top: 35%;
  left: 40%;
  width: 100px;
  line-height: 3;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-section-area .members .spk-img ul:before {
  position: absolute;
  content: "";
  height: 110px;
  width: 110px;
  background: transparent;
  top: -15%;
  left: -15px;
  border: 1px solid #fff;
  -webkit-transform: rotate(44deg) scale(1.4);
  -ms-transform: rotate(44deg) scale(1.4);
  transform: rotate(44deg) scale(1.4);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-section-area .members .spk-img ul li {
  display: inline-block;
  margin: 0 3px;
  -webkit-transform: perspective(50px) rotatey(90deg);
  transform: perspective(50px) rotatey(80deg);
  -webkit-transition: all 0.5s ease 0.2s;
  -o-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
  margin: 0 5px;
}
.team-section-area .members .spk-img ul li a i.fa {
  color: rgba(255, 78, 0, 0.8);
  font-size: 18px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 28px;
  color: #fff;
  height: 28px;
  line-height: 21px;
  text-align: center;
}
.team-section-area .members .spk-img ul li a i.fa:hover {
  color: #cf057c;
}
.team-section-area .members .spk-img ul li:nth-child(1) {
  -webkit-transform: translate3d(-53px, -50px, 0);
  transform: translate3d(-53px, -50px, 0);
}
.team-section-area .members .spk-img ul li:nth-child(2) {
  -webkit-transform: translate3d(53px, -50px, 0);
  transform: translate3d(53px, -50px, 0);
}
.team-section-area .members .spk-img ul li:nth-child(3) {
  -webkit-transform: translate3d(-53px, 50px, 0);
  transform: translate3d(-53px, 50px, 0);
}
.team-section-area .members .spk-img ul li:nth-child(4) {
  -webkit-transform: translate3d(53px, 50px, 0);
  transform: translate3d(53px, 50px, 0);
}
.team-section-area .members .spk-img:hover ul {
  left: 35%;
  opacity: 1;
  z-index: 9;
}
.team-section-area .members .spk-img:hover ul:before {
  opacity: 1;
  -webkit-transform: rotate(44deg) scale(1);
  -ms-transform: rotate(44deg) scale(1);
  transform: rotate(44deg) scale(1);
}
.team-section-area .members .spk-img:hover ul li:nth-child(1),
.team-section-area .members .spk-img:hover ul li:nth-child(2),
.team-section-area .members .spk-img:hover ul li:nth-child(3),
.team-section-area .members .spk-img:hover ul li:nth-child(4) {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-section-area .members .spk-info {
  text-align: center;
  padding: 30px 0;
}
.team-section-area .members .spk-info h3 {
  color: #252525;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-transform: capitalize;
}
.team-section-area .members .spk-info h3:hover {
  color: #ec9b4a;
}
.team-section-area .members .spk-info p {
  font-size: 15px;
  margin-bottom: 0;
  color: #656565;
}

.team-section-area-two .title-text h2 {
  color: #fff;
}

.team-section-area-two .members {
  position: relative;
  overflow: hidden;
}
.team-section-area-two .members:hover img {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.team-section-area-two .members img {
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.team-section-area-two .members .img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(91, 69, 213, 0.9);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.team-section-area-two .members:hover .img-overlay {
  opacity: 1;
}
.team-section-area-two .members .name a {
  position: absolute;
  bottom: -20%;
  left: 10%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-section-area-two .members .name a:hover {
  color: #cf057c;
}
.team-section-area-two .members:hover .name a {
  bottom: 10%;
}
.team-section-area-two .members .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 23%;
  left: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-section-area-two .members .social-icons li {
  margin-right: 10px;
}
.team-section-area-two .members .social-icons li a {
  color: #fff;
}
.team-section-area-two .members .social-icons li a:hover {
  color: #252525;
}
.team-section-area-two .members:hover .social-icons {
  left: 27px;
}
.team-section-area ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  outline: none;
}
.team-section-area .mb50 {
  margin-bottom: 50px;
}


/*--------------------------------------------------------------
# Read more
--------------------------------------------------------------*/
.mybox1 { 
  display: none; 
} 
/* 
.bg-about{
  background-image: url('../img/man_j.jpg') !important;
  padding-top: 105px;
  padding-bottom: 20px; 
} */
/*--------------------------------------------------------------
# Thought leadership
--------------------------------------------------------------*/
.mt-30{
  margin-top: 30px !important;
}
.thought-leadership-area {
  background-image: url('../img/wavy-pattern.png') !important;
  padding-top: 105px;
  padding-bottom: 20px; 
}
.thought-leadership-area .section-title-2 .title {
  color: #fff; 
}
.thought-leadership-area .section-title-2 p {
  color: #fff; 
}
.thought-leadership-area .single-thought-leadership {
  position: relative;
  overflow: hidden;
  }
.thought-leadership-area .single-thought-leadership img {
  width: 100%;
  transform: scale(1) rotate(0deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; 
}
.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 21, 46, 0.4);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 240px 40px 37px; 
}
.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay p{
  font-size: 13px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay {
    padding: 175px 40px 37px; 
  } 
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay {
    padding: 205px 40px 37px; 
  } 
}

@media (max-width: 767px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay {
    padding: 140px 20px 20px;
  } 
  /*.thought-leadership-area{*/
  /*    margin-bottom: 0 !important;*/
  /*}*/
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay {
    padding: 260px 20px 20px;
  } 
}

.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay span {
  font-weight: 700;
  color: #fff;
  font-size: 14px; 
}
      

.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay .title {
  font-size: 24px;
  padding-top: 10px;
}
        
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay .title {
    font-size: 20px;
    } 
}

.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay .title a {
  color: #fff;
}
      
.thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay > a {
  color: #fff;
  margin-top: 180px;
  font-size: 30px; 
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay > a {
    margin-top: 105px; 
  } 
}
        
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay > a {
    margin-top: 135px; 
  } 
}

@media (max-width: 767px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay > a {
    margin-top: 85px; 
  } 
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .thought-leadership-area .single-thought-leadership .single-thought-leadership-overlay > a {
    margin-top: 185px;
  } 
}

.thought-leadership-area .single-thought-leadership:hover img {
  transform: scale(1.2) rotate(5deg); 
}

.thought-leadership-area .single-thought-leadership:hover .single-thought-leadership-overlay {
  padding: 37px 40px 37px;
  background-color: rgb(17 108 7 / 90%);
}

@media (max-width: 767px) {
  .thought-leadership-area .single-thought-leadership:hover .single-thought-leadership-overlay {
    padding: 20px; 
  } 
}
.thought-leadership-area.thought-leadership-area-2 {
  padding-top: 10px; 
}

a.disabled-link { 
  pointer-events: none;
  color: gray; 
  text-decoration: none;
}


.carousel-caption {
  right: 10% !important;
  left: 10% !important;
}

.carousel-caption p {
  font-size: 10pt;
}

.carousel-caption h3 {
  font-size: 24pt !important;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
}

/* .carousel-inner{
  height: 100vh;
} */


/* =============================================================================
  Animations
========================================================================== */
.animate-onscroll {
  visibility: hidden;
}

.animated {
  visibility: visible;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.slow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.animated.fadeIn {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 60px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #94c045;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #94c045;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== CARD ===============*/

.service-container {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 5rem;
}

.card__container {
  display: grid;
  row-gap: 3.5rem;
}

.card__article {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);

}

.card__img {
  width: 228px;
  border-radius: 1.5rem;
}

.card__data {
  width: 250px;
  background-color: var(--container-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}

.card__description {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: .25rem;
}

.card__title {
  font-size: var(--h2-font-size);
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: .75rem;
}

.card__button {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--first-color);
}

.card__button:hover {
  text-decoration: underline;
}

/* Naming animations in hover */
.card__article:hover .card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.card__article:hover {
  animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .service-container {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .service-container {
    height: 100vh;
  }

  .card__container {
    grid-template-columns: repeat(4, 1fr);
  }
  .card__img {
    width: 348px;
  }
  .card__data {
    width: 280px;
    padding-inline: 2.5rem;
  }
}


/* .card {
  border: none;
  border-radius: 0;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
} */
.custom-carousel-inner {
  padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev span,
.carousel-control-next span {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 577px) {
  .cards-wrapper {
    display: flex;
  }
  /* .card {
    margin: 0 0.5em;
    width: calc(100% / 2);
  } */
  .image-wrapper {
    height: 20vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .card:not(:first-child) {
    /* display: none; */
  }
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
}



.lifestyle .lifestyle-item {
  position: relative;
  overflow: hidden;
}

.lifestyle .lifestyle-item img {
  transition: 0.5s;
}

.lifestyle .lifestyle-item:hover img {
  transform: scale(1.2);
}

.lifestyle .lifestyle-item .lifestyle-content {
  position: absolute;
  width: 100%; 
  height: 100%; 
  top: 0; 
  left: 0; 
  padding: 20px; 
  display: flex; 
  flex-direction: column; 
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}



/*** service Start ***/
/* .service{
  background-color: #f4fffa;
} */
 .ngap-65{
  margin-top: -65px;
 }

.service-item h4 {
  font-size: 1.22rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 700;
}

.service-item p{
  text-align: justify;
  font-size: 0.8rem !important;
  font-family: roboto;
}

@media screen and (max-width: 768px) {
  .service-item h4 {
    font-size: calc(1.275rem + .3vw);
  }

  .ngap-65{
    margin-top: -40px;
  }

}

.service .service-item {
  height: 100%;
  transition: 0.5s;
}

.service .service-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.service .service-item .service-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item .service-img img:hover {
  transform: scale(1.2);
}

.service .owl-stage {
  margin: 50px 0;
  position: relative;
}

.service .owl-nav .owl-prev {
  position: absolute;
  top: -8px;
  right: 0;
  /* color: var(--bs-primary); */
  padding: 5px 25px;
  border: 1px solid var(--bs-success);
  border-radius: 20px;
  transition: 0.5s;

}

.service .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.service .owl-nav .owl-next {
  position: absolute;
  top: -8px;
  right: 88px;
  /* color: var(--bs-primary); */
  padding: 5px 25px;
  border: 1px solid var(--bs-success);
  border-radius: 20px;
  transition: 0.5s;
}

.service .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-white);
}
/*** service End ***/
