/*-- Google Font --*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
/*-- Common Style --*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



* {
  cursor: url('./assets/images/pointer.svg'),auto;
}

@font-face {
  font-family: bass;
  src: url(assets/fonts/BasementGrotesque-Black_v1.202Z.woff);
}
:root {
    --fs-xl: 2.5rem; /* 40px if base size is 16px */
    --fs-lg: 2rem;   /* 32px */
    --fs-md: 1.75rem; /* 28px */
    --fs-sm: 1.5rem; /* 24px */
    --fs-xs: 1.25rem; /* 20px */
    --fs-base: 1rem;   /* 16px */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --ff-poppins: 'Poppins', sans-serif;
    --ff-play: 'Playfair Display', serif;
    --ff-space: 'Space Grotesk', serif;
    --ff-archivo: "Archivo Black", sans-serif;
    --color-primary:  #00ff0d;  /* e.g., a blue shade */
    --color-primary-dark: #00ff0d;
    --color-primary-light: #ffffe5;
    --color-secondary: #041310;  /* e.g., an orange shade */
    --color-secondary-dark: #010303;
    --color-secondary-light: #0413101b; 
    --body-color: #555;
    --border-color: #ffffff1f;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-poppins);
  color: var(--fs-base);
  font-size: var(--fs-base);
  letter-spacing: 1px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-secondary);
}

/* a:hover {
  color: #f67366;
} */


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


/* ::-moz-selection {
  background-color: var(--color-primary);
  color: #fff;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
} */


/* ---Custom Container--- */
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

.ffp {
    font-family: var(--ff-play);
}
.ffspace {
    font-family: var(--ff-space);
}

.ffbase {
  font-family: bass;
}

.ffarchio {
  font-family: var(--ff-archivo);
}

/* color shade */
.text-green {
    color: var(--color-primary);
}
.text-green-dark {
    color: var(--color-primary-dark);
}
.text-green-light {
    color: var(--color-primary-light);
}
.bg-green {
    background: var(--color-secondary);
}
.bg-green-dark {
    background: var(--color-primary-dark);
}
.bg-green-light {
    background: var(--color-primary-light);
}
.dark-text {
    color: var(--color-secondary);
}
.black-text {
    color: var(--color-secondary-dark);
}
.dark-light-text {
    color: var(--color-secondary-light);
}
.dark-bg {
    background: var(--color-secondary);
}
.black-bg {
    background: var(--color-secondary-dark);
}
.dark-light-bg {
    background: var(--color-secondary-light);
}

/* size sades */

.heading-xl {
    font-size: var(--fs-xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
    font-family: var(--ff-space);
}
.heading-lg {
    font-size: var(--fs-lg);
    font-weight: var(--font-weight-bold);
    margin: 0;
    font-family: var(--ff-space);
}
.heading-md {
    font-size: var(--fs-md);
    font-weight: var(--font-weight-semibold);
    margin: 0;
    font-family: var(--ff-space);
}
.heading-sm {
    font-size: var(--fs-sm);
    font-weight: var(--font-weight-normal);
    margin: 0;
    font-family: var(--ff-space);
}
.heading-xs {
    font-size: var(--fs-xs);
    font-weight: var(--font-weight-normal);
    margin: 0;
    font-family: var(--ff-space);
}
.base {
    font-size: var(--fs-base);
    font-weight: var(--font-weight-normal);
    font-family: var(--ff-space);
}

.fwl {
    font-weight: var(--font-weight-light);
}
.fwn {
    font-weight: var(--font-weight-normal);
}
.fws {
    font-weight: var(--font-weight-semibold);
}
.fwb {
    font-weight: var(--font-weight-bold);
}


/*----- Header----*/

/* === removing default button style ===*/
.logoname {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  text-shadow: 3px 2px 0 #198754;


}
.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-weight: bold;
}




/* button styling */
.logoname{
  /* --border-right: 1px; */
  /* color: transparent !important; */
  --text-stroke-color: #fff;
  --animation-color: #5bec48;
  --fs-size: 1.5em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  position: relative;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;




  /* -webkit-text-stroke: 1px var(--text-stroke-color); */
}
/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  /* -webkit-text-stroke: 1px var(--animation-color); */
}
/* hover */
/* .logoname:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color))
} */

.logoname {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.abse ul li a:hover{
  color: #24f808 !important;
}
.abse i{
  color: #24f808 !important;

}
.off_footer  a:hover{
  color: #24f808 !important;
}
.off_footer  p:hover{
  color: #24f808 !important;
}




/* Toggle icon */
.toggle {
  position: relative;
  width: 70px;
  height: 70px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.toggle span {
  position: absolute;
  height: 2px;
  width: 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s;
  color: #fff;
}

.toggle span:nth-child(1) {
  transform: translateY(-10px);
  width: 25px;
  left: 15px;
}

.toggle.toggle.open span:nth-child(1) {
  width: 30px;
  transform: translateY(0px) rotate(45deg);
  transition-delay: 0.125s;
}

.toggle span:nth-child(2) {
  transform: translateY(10px);
  width: 15px;
  left: 15px;
}

.toggle.toggle.open span:nth-child(2) {
  width: 30px;
  transform: translateY(0px) rotate(315deg);
  transition-delay: 0.125s;
}

.toggle.open span:nth-child(3) {
  transform: translateX(60px);
  background: var(--color-primary) !important;
}
.toggle span:nth-child(3) {
  background: var(--color-primary) !important;
}

/* Toggle icon */

/* .main_footer {
  margin-top: 50px;
  padding: 50px 0 100px;
} */

.footer_bg {
  padding: 20px 0 20px;
  /* border: 1px solid #fff; */
  border-left: 0;
  border-right: 0;
  background-position: -280% 150%;
  background-size: cover;
}

.off_footer a {
  color: #fff;
}

.mobile-menu_wrapper .offcanvas-body::-webkit-scrollbar {
  display: block;
}


.togname span {
  position: absolute;
  top: 24px;
  right: 128px;
  font-size: 14px;
}

/* custom css end */


.header-area {
    border-bottom: 1px solid var(--border-color);
}

.sticky {
  -webkit-animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  background-color: #00aa90;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.header-logo img {
    width: 130px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-nav>ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav>ul>li {
  display: inline-block;
}
.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  color: var(--bs-white);
  padding: 21px 0;
  letter-spacing: 1px;
  
}

.main-nav > ul > li > a:before {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: var(--color-primary);
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
}

.main-nav > ul > li:hover > a:before {
    width: 100%;
}

.main-nav>ul>li:hover>a {
  color: var(--color-primary);
}

.main-nav>ul>li:hover>.drop-menu{
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

/* ---Drop Menu--- */
.drop-holder {
  position: relative;
}


.drop-menu {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  background-color: var(--color-secondary);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 330px;
  padding-left: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: left;
  z-index: 2;
  transform-origin: 0 0 0;
  transform: scaleY(0);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.drop-menu>li>a {
    transition: all 0.2s linear;
    font-weight: 300;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
}

.drop-menu>li>a:before {
    content: '\f35b';
    font-family: remixicon !important;
    position: absolute;
    left: 0;
    transition: all 0.5s;
    opacity: 0;
}

.drop-menu>li>a:hover:before {
    left: 15px;
    transition: all 0.5s;
    opacity: 1;
}

.drop-menu>li>a:hover {
  padding-left: 10px;
  color: var(--color-primary);
  transition: all 0.2s linear;
}


.header-btns {
  display: flex;
  gap: 30px;
}

.space-y {
  padding-block: 60px;
}

/* ---Custom Button--- */
.btn-custom-size {
    line-height: 16.8px;
    font-size: 14px;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 12px;
    padding: 15px 24px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* ---Global Overlay--- */
.global-overlay {
  background-color: var(--color-secondary);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: calc(0 - 70px);
  z-index: 99;
  visibility: hidden !important;
}

.global-overlay.overlay-open {
  visibility: visible;
  cursor: pointer;
}


/*----Slider-----*/
.hero-area {
  position: relative;
  display: flex;
  align-items: end;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  padding: 0;
  /* background: #198754; */
  /* background-blend-mode: luminosity; */
  background-position: 100% 70% !important;
}

.hero-title {
  font-size: 11rem;
  font-family: var(--ff-bella);
  font-weight: var(--font-weight-bold);
  background-size: 500% auto;
  display: inline-block;
  background-position: 150% center;
  background-repeat: no-repeat;
  margin: 0px;
  line-height: 10rem;
  text-shadow: 9px 6px 0 #198754;
}

.emp {
  text-shadow: 5px 3px 0 #198754;
}
.title-area {
  margin-top: -140px;
}

/* .client_area {
  margin-top: -70px;
} */

.client_item {
  animation: scroll 40s linear infinite;
  width: 100%;
  height: 45px;
}

.client_area img {
  opacity: 0.3;
  transition: all 0.4s;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client_item:hover img {
  opacity: 1;
  cursor: pointer;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4));
  }
}


.bg-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.sub_title {
  position: absolute;
  top: 116%;
  z-index: 9;
  right: 0;
}

.carousel-item {
  width: 100%;
  height: 500px;
}

.carousel-item:before {
  content: '';
  background: #0000007a;
  width: 100%;
  height: 100%;
  position: absolute;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.carousel-indicators [data-bs-target] {
  width: 90px;
  height: auto;
  background-color: transparent;
  opacity: 1;
  transition: opacity 1s ease;
  cursor: pointer;
  position: relative;
}

.thmbimg:before {
  content: '';
  position: absolute;
  background: var(--color-primary) !important;
  bottom: 0;
  width: 100%;
  height: 62%;
  z-index: 999;
  opacity: 0;
  left: 0;
}

.thmbimg.active:before {
  opacity: 1;
}


.carousel-indicators {
  gap: 10px;
  right: -80px;
  left: auto;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}

p.small {
  text-indent: 0 !important;
}
.headani .heading {
  font-size: 6rem;
  line-height: 7rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.headani .show {
  animation: moveleft 5s 2s linear infinite;
}
.headani .beat {
  animation: moveright 5s 2s linear infinite;
  opacity: 0.3;
}

@keyframes moveleft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moveright {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.headani {
  padding-block: 50px;
}


button.btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #04cc2f;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.form-area {
  padding: 50px 0 100px;
  background-blend-mode: color;
}

.form-inner {
  box-shadow: 0px 0px 25px 0px #97979733;
  padding: 0;
  border-radius: 19px;
  background: #ffffff08;
  border: 1px solid #ffffff42;
  border-top: 0;
}

.form-inner label {
  color: #011827;
  text-transform: capitalize;
  line-height: 15.4px;
  background: #55C8BB;
  position: absolute;
  top: 12px;
  z-index: 9;
  left: 70px;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 13px;
}


.input-group .form-control {
  background: transparent;
  color: #fff;
  border-color: #55C8BB42;
  text-indent: 60px;
  font-size: 14px;
  height: 50px;
  border-radius: 12px !important;
  font-weight: 300;
  letter-spacing: 1px !important;
}



textarea.form-control.h-auto {
  line-height: 32px;
}

.input-field span {
  color: #55C8BB;
}

.input-group .form-control::placeholder {
  color: #ffffff87;
}


span.ri-shopping-bag-fill {
  color: #9593A0;
}

.input-field {
  position: relative;
}

.input-group-text {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  bottom: 0;
  background: transparent;
  border: 0;
}

/*----Offcanvas-----*/
.mobile-menu_wrapper .offcanvas-body {
  background-color: #04131085;
  position: fixed;
  top: 71px;
  left: -100%;
  width: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: visible;
  overflow-x: hidden;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 500ms ease;
  padding: 0;
  backdrop-filter: blur(10px);
}

.mobile-menu_wrapper.show .offcanvas-body {
  visibility: visible;
  left: 0;
  opacity: 1;
  z-index: 999;
}

.offcanvas-backdrop.show {
  opacity: 0 !important;
  display: none;
}

@media (max-width: 479px) {
  .mobile-menu_wrapper .offcanvas-body {
    width: 100%;
  }
}

.mobile-menu_wrapper .inner-body {
  padding: 10px 60px !important;
}
.mobile-menu_wrapper .offcanvas-top {
  display: flex;
  justify-content: flex-end;
  padding: 0 25px 30px;
  height: auto;
  border-bottom: 0;
  transform: none;
}

.mobile-menu_wrapper .button-close {
  font-size: 20px;
  color: #141414;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu_wrapper .mobile-menu>li {
  height: 100%;
}

.mobile-menu_wrapper .mobile-menu>li>a span {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu_wrapper .mobile-menu li {
  position: relative;
}


.mobile-menu_wrapper .mobile-menu li>.menu-expand {
  position: absolute;
  right: 0;
  top: 2px;
  width: 50px;
  height: 100%;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  margin-right: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 20px;
}

.mobile-menu_wrapper .mobile-menu li a {
  font-size: 80px;
  text-transform: uppercase;
  display: block;
  line-height: 70px;
  font-weight: 900;
  color: #fff;
}
.mobile-menu_wrapper .mobile-menu li a i {
  font-size: 90px;
  position: relative;
  top: 6px;
  font-weight: bold;
  left: -30px;
  opacity: 0;
}
.mobile-menu_wrapper .mobile-menu li a:hover i {
opacity: 1;
transition: all 0.4s linear;
color: var(--color-primary);
}
.mobile-menu_wrapper .mobile-menu li a:hover {
color: var(--color-primary);
}

.mobile-menu_wrapper .mobile-menu li .sub-menu {
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li a {
  text-transform: uppercase;
  font-size: 11px;
  color: #ffffff;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu_wrapper .mobile-menu li .sub-menu li.menu-open>a {
  color: #72f666;
}


.mobile-menu_wrapper .mobile-menu li.menu-open>a {
  color: #72f666;
}
/* 
.mobile-menu_wrapper .mobile-menu li.menu-open>a>span>i:before {
  content: '\e682';
} */

h2.svttl, .big_title {
  font-size: 6rem;
  font-weight: 800;
  font-family: sans-serif;
  margin-bottom: 20px;
  margin-top: 30px;
}
.svwrap h3 {
  font-size: 3rem;
  font-weight: 800;
}

.team_wrap .team_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.team_area {
  height: 560px;
  padding-top: 60px;
}
.team_img img {
 opacity: 0;
}

.team_item:hover {
cursor: pointer;
}

.team_item:hover img, .team_img.open img {
  opacity: 1 !important;
  cursor: pointer;
}

.team_list {
  border-bottom: 1px solid;
}

.team_area li:hover * {
  color: #fff;
  cursor: pointer;
}

.showcase .team_img {
  width: 100%;
  height: 300px;
}

.showcase .team_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footle h2 {
  font-size: 8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 7rem;
}
.footerap {
  /* border-top: 1px solid #ffffff5c; */
  margin-top: 20px;
  padding-top: 30px;
}

.get:hover:after {
  width: 68%;
  transition: all 0.5s linear;
  cursor: pointer;
  left: 0;
}

.get {
display: inline-block !important;
}

.get:after {
  content: '';
  background: #00ff0d;
  width: 0;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s linear;
  transform-origin: left;
}



.main_footer .oftinfo {
  position: relative;
  top: 13px;
}

.footle {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

section.service_area {
  margin-top: -8px !important;
}

.oftinfo a {
  display: flex;
  width: 100%;
  text-align: left;
  border-radius: 0;
  text-transform: uppercase;
  align-items: baseline;
}

.oftinfo span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #222;
  margin-right: 10px;
  font-size: 20px !important;
  border-radius: 50%;
}

.bottom_footer .col:nth-child(1) a:hover span {
  background: #00AFF0;
  color: #fff;
}

.bottom_footer .col:nth-child(2) a:hover span {
  background: #25D366;
  color: #fff;
}

.bottom_footer .col:nth-child(3) a:hover span {
  background: #24A1DE;
  color: #fff;
}

.bottom_footer .col:nth-child(4) a:hover span {
  background: #F7F700;
  color: #000;
}

.bottom_footer .col:nth-child(5) a:hover span {
  background: #5bbc2f;
  color: #fff;
}

.mobile-menu_wrapper .inner-body {
  padding: 10px 60px !important;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu_wrapper .mobile-menu li a {
  font-size: 70px;
  line-height: 80px;
  text-shadow: 3px 2px 0 #198754;
  cursor: pointer;
}

/* .main_footer {
  margin-top: 130px;
} */

/*------ Footer ---------*/

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

.text-grey {
  color: #939393;
}

.footer-widget-logo {
  padding-bottom: 20px;
}

.footer-widget-title {
  color: #0faa5d;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.footer-widget-desc {
  line-height: 21px;
  color: #fff;
  padding-right: 40px;
}

ul.footer-widget-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.footer-widget-list-item>li a {
  color: #041310;
  font-weight: 300;
  font-size: 16px;
  line-height: 35px;
}
.footer-widget-list-item>li a:hover {
  color: var(--color-primary-dark);
}

.social-link ul {
  display: flex;
  gap: 20px;
}

.social-link i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0fad5f;
  border-radius: 50px;
  font-size: 23px;
  color: #ffffff;
  transition: all 0.4s;
}

.social-link i:hover {
  background: var(--color-secondary);
}


.footer-top .col-lg-4 {
position: relative;
}

.footer-top .col-lg-4:nth-child(2):before, .footer-top .col-lg-4:nth-child(2):after {
  content: '';
  width: 1px;
  height: 100%;
  background: rgb(18 26 45 / 38%);
  position: absolute;
  left: -30px;
}

.footer-top .col-lg-4:nth-child(2):after {
  left: auto;
  right: -20px;
  top: 0;
}

/* ---Copyright--- */
.copyright {
  border-top: 1px solid #E5E5E566;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}

/* card design */


/*----------------------------------------*/
/*   Mobile Friendly
/*----------------------------------------*/
@media (max-width: 991px) {
.header-inner {
  justify-content: space-between;
}

.header-area {
  padding: 20px 0;
}

.hero-area {
  padding: 60px 0;
}

.hero-content {
  margin-top: 30px;
}

.hero-content .title, .hero-content .title span {
  font-size: 30px;
  line-height: 40px;
}

.toolbar-btn i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2c2d5b;
  border-radius: 50px;
  box-shadow: 0px 0px 25px 0px #97979761;
  font-size: 20px;
}

button.btn-close {
  top: 0;
  right: 0;
}

.megamenu {
  padding: 0;
  flex-direction: column;
  width: 100%;
}

.footer-widget-desc {
  padding-right: 0px;
}

.form-area {
  padding: 50px 0;
}

.form-inner {
  padding: 30px 10px;
  margin: 0;
}

.mega-title h2 {
  font-size: 18px;
  line-height: 24.8px;
}

.cirle-img {
  left: 0;
}

.cirle-img img {
  width: 60%;
}

.btn-custom-size {
  padding: 20px 25px;
}
.mobile-logo {
  position: absolute;
  top: 30px;
}

}

@media (max-width: 767px) {

  
  .hero-area {
    padding: 60px 0 0;
}


.hero-area .row {
  flex-direction: column-reverse;
}

}

@media (max-width: 374px) {
.hero-btn {
display: block;
}

}



/*manish css*/

.bg_text_1 {
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.bg_text_1 p {
    font-family: var(--font-basement-grotesque-display);
    font-weight: 800;
    font-size: max(22px,4.1666666667vw);
    line-height: 1.1;
    color: #00ff14;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    font-size: 92px;
    line-height: 76px;
     text-wrap: balance;
    display: inline-block;
}

.charset p {
    align-items: center;
    text-align: center;
    font-size: 38px;
    color: #ffffffde;
    line-height: 41px;
}

.bg_img_0 img {
    width: 100%;
    justify-content: center;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    height: 43.3854166667vw;
    object-position: center center;
}

.bg-box_1 p {
    font-size: 20px;
    color: aliceblue;
    line-height: 30px;
    text-align: left!important;
    display: flex;
    justify-content: center;
}

.bg-box_1 h2 {
    color: aliceblue;
    text-align: left!important;
    font-size: 56px;
    font-weight: 600;
}
/*.row{
    border-bottom: 1px solid;
    border-color: white;
}*/

/*.marquee_1 marquee {
    font-size: 43px;
    color: white;
    line-height: 56px;
    position: relative;
    top: -10px;
}
*/

.blog-marquee_marquee__W4987 span {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 4.1666666667vw;
    font-family: var(--font-basement-grotesque-display);
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    padding: 1px 2px 2px 9px;
}

.blog-marquee_marquee__W4987 img {
    width: 55px;
    height: 55px;
    position: relative;
    top: 5px;
}


.scrllwrap {
    display: flex;
    flex-wrap: nowrap;
}

header {
    border-bottom: 3px solid;
    border-top: 3px solid;
}


.bg_text_1h h2 {
    font-size: 30px;
    font-weight: 200;
    /* line-height: 34px; */
}
.bg_text_1h h2:hover{
   color:#00ff0d!important;
}



.bg_text_1h p {
    font-size: 20px;
    line-height: 25px;
    color: #f0f8ffb8;
}
.bg_text_12 span {
    position: relative;
    float: inline-end;
    font-size: 16px;
    margin-right: 17px;
    top: 18px;
}


.footer_2{
     float: inline-end;
}

.footer_2 p {
    color: aliceblue;
    font-size: 23px;
}


.footer_1 h2 {
    color: aliceblue;
    font-size: 29px;
    font-weight: 300;
    line-height: 30px;
}

.footer_1 p {
    color: aliceblue;
    font-size: 18px;
    font-weight: 400;
    /* line-height: 27px; */
}
section.container-fluid {
    border-bottom: 2px solid;
}

.bg-box_1 span:hover {
       color:#00ff0d!important;

}

.bg-box_1 span {
    color: aliceblue;
    list-style: none;
    text-decoration: none;
    font-size: 19px;
}
.moxt_2{
  border-bottom: 1px solid;
}


.most{
  border: 0 ;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}



section.most_1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.lop {
border: 0;
border-top: 0;
border-bottom: 1px solid white!important;
}

section.moxt_2.mt-4 {
    border-bottom: 1px solid;
    color: aliceblue;
}

header.header-area.header-sticky.sticky-top.dark-bg {
    border-bottom: 1px solid;
    color: aliceblue;
}

.contact_area {
  background: #000000c4;
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact_area h2.svttl, .big_title {
  font-size: 6rem;
  font-weight: 800;
  font-family: sans-serif;
  margin-bottom: 20px;
  margin-top: 0px;
}
.cls-hl p {
  margin-bottom: px;
}
.cls-hl {
  padding-top: 9px;
}
.cls-icons {
  display: flex;
  gap: 15px;
}
.cnt-info {
  padding: 60px;
}
input.cntrl::placeholder {
  color: #fafafae7;
}
input.cntrl{
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0px;
  color: white
}
textarea.cntrl {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  border-radius: 0px;
  color: white;
}

button.btn-su {
  background: #00ff0d;
}

textarea.cntrl:focus {
  color: #ffffff;
  background-color: #97979700;
}
input.cntrl:focus {
  color: #ffffff;
  background-color: #97979700;
}

textarea.cntrl::placeholder {
  color: #fafafae7;
}
.al-frm {
  padding: 63px;
}
.btn-smt button {
  padding-left: 20px;
  padding-right: 20px;
}

.icon-call {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00ff0d;
}













@media (max-width:424px){
  body .hero-area {
    min-height: 29vh !important;
}
.hero-title {
  font-size: 40px !important;
  line-height: 0rem !important;
  padding-top: 107px;
  text-shadow: 0px 3px 0 #198754;

}
.emp {
  text-shadow: 0px 2px 0 #198754;
}
.svwrap h3 {
  font-size: 1rem !important;
}
h2.svttl, .big_title {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.svdesc p {
  font-size: 11px !important;
}
.footle h2 {
font-size: 2rem !important;
line-height: 3rem !important;
}
.footle {
min-height: 220px !important;
}
.ffspace {
  padding-left: 10px !important;
  padding-bottom: 0 !important;
  padding-top: 12px !important;
  font-size: 20px;
}
section.client_area {
display: none;
}
.footer_bg {
  background-position: -424% 150%;
}
.hero-content {
padding-left: 10px;
}
.get:after {
content: '';
background: #00ff0d;
width: 0;
height: 4px;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.5s linear;
transform-origin: left;
}

section.contact_area .big_title {
  margin-top: 0px !important;
  font-size: 22px;
  padding-top: 10px;
}
.cnt-info {
  padding: 0px;
  padding-top: 20px;
}
.cont-hdn h2 {
  display: none;
}
.al-frm {
  padding: 0px;
}
.al-frm {
  padding: 0px;
  padding-top: 50px;
}
.eml-divs {
  padding-top: 44px;
}




}

@media (min-width: 425px) and (max-width: 767px){
 body .hero-area {
      min-height: 34vh !important;

  }
  .hero-title {
    font-size: 3rem !important;
    line-height: 0rem !important;
    padding-top: 107px;
    text-shadow: 0px 3px 0 #198754;
}
.emp {
  text-shadow: 0px 2px 0 #198754;

}
  .svwrap h3 {
    font-size: 1rem !important;
}
h2.svttl, .big_title {
  font-size: 2rem !important;
}
.svdesc p {
  font-size: 15px !important;
}
.footle h2 {
  font-size: 2rem !important;
  line-height: 3rem !important;
}
.footle {
  min-height: 220px !important;
}
.ffspace {
  padding-left: 10px !important;
  padding-bottom: 0 !important;
  padding-top: 20px !important;
}
section.client_area {
  display: none;
}
.footer_bg {
  background-position: -267% 150%;
}
.hero-content {
  padding-left: 10px;
}
.get:after {
  content: '';
  background: #00ff0d;
  width: 0;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s linear;
  transform-origin: left;
}

section.contact_area .big_title {
  margin-top: 0px !important;
  font-size: 22px;
  padding-top: 30px;
}
.cnt-info {
  padding: 0px;
  padding-top: 20px;
}
.cont-hdn h2 {
  display: none;
}
.al-frm {
  padding: 0px;
}
.al-frm {
  padding: 0px;
  padding-top: 50px;
}
.eml-divs {
  padding-top: 44px;
}

}

@media (min-width:768px) and (max-width:1023px) {
  .hero-area {
    min-height: 65vh !important;

}
.hero-title {
  font-size: 6rem;
  line-height: 9rem;
  text-shadow: 5px 4px 0 #198754;
}
.emp {
  text-shadow: 2px 2px 0 #198754;


}
.ffspace {
  padding-top: 0 !important;
}
h2.svttl, .big_title {
  font-size: 3rem;
}
.svwrap h3 {
  font-size: 2rem;
}
p.short-desc {
  font-size: 20px !important;
}
.footle h2 {
  font-size: 3rem;
  line-height: 3rem;
}

.footer_bg {
  background-position: -341% 246%;

}
.hero-content {
  padding-left: 10px;
}
.footle {
  min-height: 247px;
}

section.contact_area .big_title {
  margin-top: 0px !important;
  font-size: 3rem;
  padding-top: 40px;
}
.al-frm {
  padding: 42px;
}
.cnt-info {
  padding: 42px;
}
}

@media (min-width:1024px) and (max-width:1199px){
  .hero-area {
    min-height: 65vh !important;

}
.hero-title {
  font-size: 7rem !important;
  line-height: 0rem !important;
  padding-top: 107px;
  text-shadow: 3px 6px 0 #198754;
}
.emp {
  text-shadow: 2px 4px 0 #198754;
}
h2.svttl, .big_title {
  font-size: 3rem;
}
.svwrap h3 {
  font-size: 2rem;
}
.svdesc p {
  font-size: 25px !important;
}
.footle h2 {
  font-size: 4rem;
  line-height: 5rem;
}
.footer_bg {
  background-position: -355% 150%;

}
.footle {
  min-height: 364px;
}

section.contact_area .big_title {
  margin-top: 0px !important;
  font-size: 65px;
  padding-top: 10px;
}
}



