* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  box-shadow: none;
}

body {
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  line-height: 1.5;
  background-color: var(--ds-btn-color);
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

ul,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

span {
  font-family: "Inter", sans-serif;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.form-control:focus {
  box-shadow: none;
}

input:focus-visible {
  outline: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

img {
  max-width: 100%;
}

:root {
  --er-primary-color: #69af07;
  --er-white-color: #ffffff;
  --er-heading-color: #222222;
  --er-footerbg-color: #333333;
}

:focus-visible {
  outline: none;
  border-color: transparent;
}

/* Scroll */
::-webkit-scrollbar {
  width: 8px;
} 
::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-border-radius: 10px;    
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 100px;
  background-color: var(--er-primary-color);
}
/* Scroll */
/*-------------- Header section css start ----------*/
.ecore_banner_section{
  background-image: url('../images/header-background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 237px 0 390px;
  overflow: hidden;
}
.ecore_heading_text{
  max-width: 800px;
  padding-left: 50px;
  position: relative;
  z-index: 1;
}
.ecore_heading_text .head-save{
  padding: 10px 20px;
  max-width: 500px;
  border-radius: 10px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}
.ecore_heading_text .head-save p {
  font-size: 38px;
  font-weight: 500;
  color: var(--er-heading-color);
  padding: 0px 0 0px 140px;
}
.ecore_heading {
  padding-left: 160px;
}
.ecore_heading h1{
  font-size: 66px;
  font-weight: 700;
  color: var(--er-white-color);
  padding: 15px 0 24px;
}
.ecore_btn{
  min-width: 160px;
  max-width: 100%;
  border-radius: 22px;
  background-color: var(--er-white-color);
  min-height: 45px;
  display: inline-block;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
}
.ecore_btn a{
  font-size: 16px;
  color: var(--er-primary-color);
  font-weight: 600;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.ecore_btn a::before{
  position: absolute;
  content: '';
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--er-footerbg-color);
  transform: scale(0);
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  border-radius: 22px;
}
.ecore_btn a:hover::before{
  transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}
.ecore_btn a:hover{
  color: var(--er-white-color);
}
.ecore_banner_right img{
  position: absolute;
}
.ecore_banner_right img:nth-child(1) {
  right: 661px;
  top: 17%;
}
.ecore_banner_right img:nth-child(2) {
  top: 15%;
  right: 241px;
}
.ecore_banner_right img:nth-child(3) {
  right: -8%;
  top: 10%;
}
.ecore_banner_right img:nth-child(4) {
  left: 51%;
  bottom: 68px;
}
.ecore_banner_right img:nth-child(5) {
  right: -6px;
  bottom: 41px;
}
.ecore_ban img{
  position: absolute;
}
.ecore_ban img:nth-child(1) {
  left: 27%;
  bottom: 33px;
}
.ecore_ban img:nth-child(2) {
  left: -165px;
  bottom: 14%;
  animation: 3.8s floating linear infinite;
}
.ecore_ban img:nth-child(3) {
  top: -96px;
  right: -60px;
  animation: 3.2s floating linear infinite;
}
@keyframes floating {
  from {
      -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
      -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
      transform: rotate(0deg) translate(-12px) rotate(0deg);
      transition:1s ease-in-out;
  }
  to {
      -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
      transform: rotate(360deg) translate(-12px) rotate(-360deg);
      transition:1s ease-in-out;
  }
}
.ecore_menu_wrapper {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0px;
  box-shadow: none;
  background-color: transparent;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 30px 0 30px;
  margin: auto;
  max-width: 1500px;
}
.ecore_navmenu_wrapper{
  text-align: end;
}
.ecore_navmenu_wrapper ul li {
  display: inline-block;
  position: relative;
  padding: 0 35px;
}
.ecore_navmenu_wrapper ul li a{
  font-size: 16px;
  color: var(--er-white-color);
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  transition: all .5s ease-in-out;
}
.ecore_navmenu_wrapper ul li a:hover{
  color: var(--er-heading-color);
}
.ecore_nav_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
}
.ecore_toggle{
  display: none;
}
.ecore_toggle span, .er-cancel-btn span {
  display: block;
  height: 2px;
  width: 15px;
  margin-bottom: 2px;
  background: var(--er-white-color);
  transition: all .5s ease-in-out;
}
/* version section Design css */
.ecore_sec{
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ecore_sec.ecore_version_section {
  padding: 67px 0 50px;
}
.ecore_heading_sec {
  text-align: center;
  margin: 0 0 58px;
}
.ecore_headshadow h3{
  font-size: 64px;
  color: var(--er-primary-color);
  font-weight: 700;
}
.ecore_headshadow {
  padding: 0 0 20px;
  position: relative;
}
.ecore_headshadow h3.text_shadow{
  font-size: 64px;
  font-weight: 700;
  color: var(--er-primary-color);
  background-image: -webkit-linear-gradient(90deg, rgb(105 175 7) -20%, rgb(255 255 255 / 0%) 63%);
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  bottom: -27px;
  transform: rotateX(180deg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.ecore_head_text{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ecore_head_text h2{
  font-size: 34px;
  color: var(--er-heading-color);
  font-weight: 700;
  text-align: center;
}
.ecore_ver_box {
  margin: 0 auto;
  text-align: center;
}

.ecore_ver_box_img{
  background-color: #f4f4f4;
  box-shadow: 5.353px 5.945px 20px rgba(0,0,0,0.08);
  position: relative;
}
.ecore_demo_link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}
.ecore_overlay_image {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  filter: blur(6px);
  background-size: contain;
  transition: all .5s ease-in-out;
}
.ecore_ver_box:hover .ecore_demo_link{
  visibility: visible;
  opacity: 1;
  transition: all .5s ease-in-out;
}

.ecore_btn.ecore-ver-btn {
  background-color: var(--er-primary-color);
  margin: 40px 0 49px;
}
.ecore_btn.ecore-ver-btn a{
  color: var(--er-white-color);
}
.ecore_ver_leaf img{
  position: absolute;
  z-index: -1;
  animation: 3s installation01 infinite alternate;
}
.ecore_ver_leaf img:nth-child(1){
  left: 0;
  bottom: 0px;
}
.ecore_ver_leaf img:nth-child(2){
  right: 0;
  top: 30px;
}
.ecore_ver_leaf img:nth-child(3) {
  left: -10%;
  top: 31%;
}
@keyframes installation01 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
.ecore_blog_leaf img{
  position: absolute;
  animation: 3s installation01 infinite alternate;
  z-index: -1;
}
.ecore_blog_leaf img:nth-child(1){
  left: 0;
  top: 0;
}
.ecore_blog_leaf img:nth-child(2){
  right: 0;
  top: 0;
}
/* Responsive-section design */
.ecore_responsive_section{
  background-image: url('../images/res-bgimg.png');
  padding: 93px 0 0;
}
.ecore_head_res .ecore_head_text h2{
  color: var(--er-white-color);
}
.ecore_resp_img {
  position: relative;
  z-index: 1;
  text-align: center;
}
.ecore_resp_shape img {
  position: absolute;
  z-index: -1;
}
.ecore_resp_shape img:nth-child(1) {
  left: 13px;
  bottom: 28%;
  animation: 3s right infinite alternate;
}
.ecore_resp_shape img:nth-child(2) {
  right: 20px;
  top: 10%;
  animation: 3s right infinite alternate;
}
@keyframes right {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-20px);
	}
}
.ecore_heading_sec.ecore_head_blog {
  text-align: left;
  margin: 0;
}
.ecore_head_blog .ecore_head_text{
  justify-content: flex-start;
}
.ecore_head_blog .ecore_head_text h2{
  font-size: 30px;
  font-weight: 500;
}
.ecore_head_blog h4{
  font-size: 34px;
  font-weight: 700;
  color: var(--er-heading-color);
  padding: 20px 0 0;
}
.ecore_blog_img {
  position: relative;
}
.ecore_blog_bg img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  animation: 3.5s rotate linear infinite;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
		-o-transform: rotate(0deg) translate(-5px) rotate(0deg);
		transform: rotate(0deg) translate(-5px) rotate(0deg);
		transition: 1s ease-in-out;
	}
	to {
    -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		-o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transform: rotate(360deg) translate(-5px) rotate(-360deg);
		transition: 1s ease-in-out;
	}
}
/* portfolio section css */
.ecore_portfolio_section{
  background-image: url('../images/portfolio-bg.png');
}
/* slider */
.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-slide {
  position: relative;
  opacity: 0.5;
  transform: scale(0.84);
  transition: all .5s ease-in-out;
  overflow: hidden;
  width: 50%;
}
.swiper-backface-hidden .swiper-slide {
  transform: scale(1) translateZ(0);
} 
.swiper-slide.swiper-slide-active {  
  transform: scale(1.1) !important;
  opacity: 1 !important;
}

.swiper-backface-hidden .swiper-slide.swiper-slide-active {
  transform: scale(1.1) translateZ(0) !important;
}
.swiper.ecore_port_slider .swiper-wrapper{
  margin: 17px 0;
}
.ecore_port_box {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.18);
  text-align: center;
}

.ecore_port_box img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}
.swiper-button-next, .swiper-button-prev{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 4.924px 0.868px 6.5px rgba(0,0,0,0.12);
  background-color: var(--er-white-color);
}
.swiper-button-prev {
  left: 23%;
  right: auto;
}
.swiper-button-next{
  right: 23%;
  left: auto;
}
.ecore_feature_section {
  padding: 93px 0 50px;
}
.ecore_feature_box p{
  font-size: 20px;
  font-weight: 600;
  color: var(--er-heading-color);
  font-family: "Open Sans", sans-serif;
  text-align: center;
  padding: 16px 0 0;
}
.ecore_feabox_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ecore_feabox_wrapper .ecore_feature_box{
  flex: 0 0 20%;
  text-align: center;
  margin: 0 0 42px;
  transition: all .5s ease-in-out;
}
.ecore_feature_box:hover{
  transform: translateY(-10px);
}
.ecore_feat_img{
  width: 134px;
  height: 134px;
  background-color: var(--er-white-color);
  box-shadow: 0 0 9px rgba(0,0,0,0.08);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all .5s linear;
}
.ecore_feat_img img{
  transition: all .5s linear;
}
.ecore_feature_box:hover .ecore_feat_img img{
  animation: 1s wobble-horizontal ease-in-out 1;
}
@keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* footer section css */
.ecore_footer_section{
  background-image: url('../images/footer-bg.png');
  overflow: hidden;
}
.ecore_footer_text {
  background-image: url('../images/footer-textbg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 850px;
  min-height: 265px;
  margin: 0 auto;
}
.ecore_footer_heading {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ecore_footer_text h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--er-white-color);
  text-align: center;
  padding: 82px 93px 20px 0px;
}
.ecore_footer_shape img{
  position: absolute;
}
.ecore_footer_shape img:nth-child(1){
  left: 0;
  bottom: 0;
  animation: 4s rotate linear infinite;
}
.ecore_footer_shape img:nth-child(2){
  right: 0;
  top: 0;
}
.ecore_copyright_section{
  padding: 16px 0;
  background-color: var(--er-footerbg-color);
}
.ecore_copy_text p{
  font-size: 16px;
  font-weight: 400;
  color: var(--er-white-color);
  text-align: center;
}
.ecore_new{
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: red;
  color: var(--er-white-color);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 3px 15px;
  border-radius: 5px;
}