* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: none;
}
body,html {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background-color: var(--sel-white-color);
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

:root {
  --sel-primary-color: rgb(255, 82, 82);
  --sel-white-color: #ffffff;
  --sel-para-color: rgba(17, 17, 17, 0.102);
  --sel-innerpara-color: #797979;
  --sel-heading-color:  #111111;
  --sel-banner-bgcolor:#090909;
  --sel-banner-textoverlay:rgba(121, 121, 121, 0.102);
  --sel-btn-hovercolor:#d32f2f;
  --sel-shop-bgcolor: #f9f9f9;
} 

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.22;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

ul,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

span {
 font-family: "Open Sans", sans-serif;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
 font-family: "Open Sans", sans-serif;
 line-height: 1.2;
}

.form-control:focus {
  box-shadow: none;
}

input:focus-visible {
  outline: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: none;
  border-color: transparent;
}

/* Scroll */
::-webkit-scrollbar {
  width: 8px;
} 
::-webkit-scrollbar-track {
  background-color: var(--sel-white-color);
  -webkit-border-radius: 10px;    
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 100px;
  background-color: var(--sel-primary-color);
}


/* Scroll */
/* button css start*/
.sel-btn, button.sel-btn, input.sel-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  min-width: 159px;
  min-height: 49px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sel-white-color);
  background: var(--sel-primary-color);
 font-family: "Open Sans", sans-serif;
  position: relative;
  z-index: 1;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
.sel-btn::after{
  position: absolute;
  content: "";
  left: auto;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--sel-btn-hovercolor);
  transition: width .4s cubic-bezier(.25,.8,.25,1) 0s;
  z-index: -1;
}
.sel-btn:hover::after{
  width: 100%;
  left: 0;
  right: auto;
}
@keyframes shine {
  100% {
    left: -200%;
  }
}
/* button css End*/
.sel-bgcover{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0 100px;
  overflow: hidden;
}
p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sel-white-color);
 font-family: "Open Sans", sans-serif;
}

/* loader css */
.sel-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fefefe;
}
.sel-loader img {
  width: 100px;
}
.sel-loader svg path{
  fill: var(--sel-primary-color);
}
.loader_circle_1{
  animation: rotateClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader_circle_1_counter{
  animation: rotateCounterClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/*-------------- Banner section css start ----------*/
.sel-banner-section {
  background-image: url('../images/banner-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 152px 0 252px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.sel-banner-section::after {
  position: absolute;
  content: '';
  background-image: url('../images/banner-bgdesign.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  top: 99px;
  right: 60px;
  left: 41px;
  margin: auto;
  height: 100%;
  width: auto;
  z-index: 0;
  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;
	}
}
.sel-banner-heading{
  position: relative;
  z-index: 99;
  padding: 0 0 70px;
}
.sel-heading-text{
  text-align: left;
}
.sel-heading-text h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--sel-white-color);
  text-transform: capitalize;
  line-height: 1.2;
  letter-spacing: 1.4px;
  max-width: 900px;
  /* margin: 0 auto; */
  text-align: left;
}
.sel-heading-text p{
   max-width: 600px;
   margin: 0 0 24px;
}
h2.banner-bgtext {
  font-size: 330px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--sel-banner-textoverlay);
  text-align: left;
}
.sel-banner-btn {
  display: flex;
  gap: 29px;
}
.sel-bantext {
  position: absolute;
  left: 11%;
  bottom: 31px;
  z-index: 1;
}
.sel-banner-mockup {
  position: absolute;
  bottom: -4%;
  right: 0;
  z-index: 1;
}
.sel-banner-pot {
  position: absolute;
  right: 46%;
  bottom: -6%;
  z-index: 1;
  animation: move-horizontal 3s linear .5s infinite alternate both;
}
@keyframes move-horizontal {
  0% { transform: translateX(0px); }
  50% { transform: translateX(15px); }
  100% { transform: translateX(30px); }
}

@keyframes float-horig{
  0% {
    transform: translateY(0)
  }
  to {
      transform: translateY(-10px)
  }
}
@keyframes floating {
  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;
  }
}
/*-------------- Banner section css End ----------*/
/*-------------- Nan-menu section css Start ----------*/
.sel-navmenu-wrapper{
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  margin: auto;
  width: 100%;
  overflow-x: hidden;
  z-index: 1;
}
.sel-navmenu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sel-navmenu ul li{
  display: inline-block;
  position: relative;
}
.sel-navmenu ul li:nth-child(2){
  padding: 0 65px;
}
.sel-navmenu ul li a{
  font-size: 18px;
  color: var(--sel-white-color);
  font-weight: 400;
  transition: all .5s ease-in-out;
}
.sel-navmenu ul li a:hover{
  color: var(--sel-primary-color);
}
/*-------------- Nan-menu section css End ----------*/
/*-------------- Home-page section css start ----------*/
.sel-demo-section {
  padding: 99px 0 49px;
}
.sel-heading-sec {
  text-align: center;
  position: relative;
  margin: 0 0 60px;
}
.sel-heading-sec .sel-headline {
  width: 2px;
  height: 80px;
  background-color: var(--sel-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  animation: topbottom 2.5s linear infinite alternate;
}
.sel-heading-sec h4{
  font-size: 70px;
  font-weight: 800;
  color: var(--sel-para-color);
}
.sel-heading-sec h3{
  font-size: 44px;
  font-weight: 800;
  color: var(--sel-heading-color);
  text-transform: capitalize;
  text-align: center;
  margin: -43px auto 0;
}

.sel-demoinner-wrapper {
  margin: 0 0 24px;
  position: relative;
  transition: all .5s ease-in-out;
  text-align: center;
}
.sel-demo-img{
  position: relative;
  transition: all .3s ease-in-out;
  margin: 0 auto;
  text-align: center;
}
.sel-demo-btn {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all .7s ease-in-out;
  margin: auto;
}
.sel-demo-img::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  width: 99%;
  height: 0%;
  background: #0000008C;
  z-index: 0;
  transition: all .7s;
  border-radius: 10px;
  margin: 0 auto;
}
.sel-demoinner-wrapper:hover .sel-demo-img::after{
  height: 100%;
}
.sel-demoinner-wrapper:hover .sel-demo-btn{
  top: 50%;
  visibility: visible;
  opacity: 1;
}
.sel-demo-text {
  text-align: center;
  padding: 21px 0 21px;
}
.sel-demo-text h4{
  font-size: 26px;
  font-weight: 800;
  color: var(--sel-para-color);
}
.sel-demo-text h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--sel-heading-color);
  margin: -14px auto 0;
}
.cyc-demo-img{
  position: relative;
  transition: all .5s linear;
}
.sel-demo-img > p {
  font-size: 16px;
  font-weight: 600;
  background-color: var(--sel-primary-color);
  color: var(--sel-white-color);
  line-height: 1.1;
  width: 110px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
  top: -31px;
  left: -27px;
  animation: sel_rotateY 3s infinite;
  animation-delay: 1s;
  text-align: center;
  z-index: 1;
}
@keyframes sel_rotateY {
  0% {
      transform: rotateY(0deg);
  }
  20% {
      transform: rotateY(360deg);
  }
  100% {
      transform: rotateY(360deg);
  }
}
.cyc-demoinner-wrapper:hover .cyc-demo-img{
  transform: translateY(-10px);
}
.cyc-demo-resp a:hover svg path{
  fill:var(--cyc-primary-color);
}
/*-------------- Home-page section css End ----------*/
/*-------------- Shop section css start ----------*/
.sel-shop-section{
  padding: 79px 0 75px;
  background-color: var(--sel-shop-bgcolor);
}
.sel-shop-sec{
  transition: all .5s ease-in-out;
}
.sel-shop-sec:hover{
  transform: translateY(-10px);
}
/*-------------- Shop section css End ----------*/
/*-------------- Responsive section css start ----------*/
.sel-resp-section{
  background-image: url('../images/resp-bgimg.png');
  padding: 76px 0 0px;
  margin: 0 auto -78px;
}
.sel-resp-section::after{
  position: absolute;
  content: '';
  background-image: url('../images/resp-design.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.sel-resp-section .sel-heading-sec{
  position: relative;
  z-index: 1;
  margin: 0 0 29px;
}
.sel-resp-section .sel-heading-sec h4{
  color: rgba(255, 255, 255, 0.102);
}
.sel-resp-section .sel-heading-sec h3{
  color: var(--sel-white-color);
}
.sel-resp-mockup{
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sel-resp-leafshape img{
  position: absolute;
  animation: 3s installation01 infinite alternate;
}
.sel-resp-leafshape img:nth-child(1){
  left: 0;
  top: 19px;
}
.sel-resp-leafshape img:nth-child(2){
  right: 0;
  bottom: 0;
  z-index: 1;
}
@keyframes installation01 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
/*-------------- Responsive section css End ----------*/
/*-------------- Detaild feature section css start ----------*/
.sel-detfeature-section{
  padding: 156px 0 84px;
  background-color: var(--sel-shop-bgcolor);
}
.sel-defea-text-sec{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.sel-heading-sec.sel-defea-heading {
  margin: 0 0 0 105px;
}
.sel-defea-heading h3{
  text-align: left;
  padding: 0 0 5px;
}
.sel-defea-heading p{
  color: var(--sel-innerpara-color);
  max-width: 400px;
  text-align: left;
}
.sel-defea-text-sec.sel-defea-wpsec .sel-defea-heading p {
  max-width: 430px;
}
.sel-defea-text-sec.sel-defea-wpsec {
  grid-template-columns: 650px 1fr;
  max-width: 1200px;
  margin: 30px auto 0;
}
.sel-defea-wpsec .sel-heading-sec.sel-defea-heading{
  margin: 0;
}
/*-------------- Detaild feature section css End ----------*/
/*-------------- Event section css Start ----------*/
.cyc-event-heading{
  text-align: left;
}
.cyc-event-heading h3 {
  max-width: 400px;
  margin: 0;
}
.cyc-event-heading p {
  max-width: 550px;
  padding: 28px 0 0;
}
/*-------------- Event section css End ----------*/
/*-------------- Feature section css End ----------*/
.sel-feature-section {
  padding: 79px 0 66px;
}
.sel-feat-box-wrapper {
  box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 52px 0 47px;
  text-align: center;
  position: relative;
  margin: 0 0 33px;
  transition: all .5s ease-in-out;
  background-color: var(--sel-white-color);
  min-height: 202px;
}
.sel-feat-box-wrapper h2{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--sel-heading-color);
  padding: 16px 0 0;
}
.sel-feat-box-wrapper:hover{
  transform: translateY(-10px);
  border-color: var(--sel-border-hover-color);
}
.sel-feat-box-wrapper:hover .sel-feat-boximg img{
  animation: wobble-horizontal 1s 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);
}
}
@keyframes wobble-vertical {
  16.65% {
      -webkit-transform: translateY(8px);
      transform: translateY(8px);
  }
  33.3% {
      -webkit-transform: translateY(-6px);
      transform: translateY(-6px);
  }
  49.95% {
      -webkit-transform: translateY(4px);
      transform: translateY(4px);
  }
  66.6% {
      -webkit-transform: translateY(-2px);
      transform: translateY(-2px);
  }
  83.25% {
      -webkit-transform: translateY(1px);
      transform: translateY(1px);
  }
  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}
/*-------------- Feature section css End ----------*/
/*-------------- Footer section css start ----------*/
.sel-footer-section{
  background-image: url('../images/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 144px 0 130px;
  position: relative;
}
.sel-footer-section::after{
  position: absolute;
  content: '';
  background-image: url('../images/footer-bgdesign.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  animation: topbottom 2s linear infinite alternate;
}
@keyframes topbottom {
  0% {
      transform: translateY(0px);        
  }
  50% {
      transform: translateY(-10px);        
  }
}
.sel-footer-head{
  text-align: center;
  position: relative;
  z-index: 1;
}
.sel-footer-head h3{
  font-size: 44px;
  font-weight: 700;
  color: var(--sel-white-color);
}
.sel-footer-head h4{
  font-size: 26px;
  font-weight: 300;
  color: var(--sel-white-color);
  padding: 13px 0 27px;
}
.sel-footer-btn {
  margin: 29px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
/*-------------- Footer section css end ----------*/
/*-------------- go-top section css start ----------*/
.go-top{
  position: fixed;
  bottom: 12%;
  right: 3%;
  padding: 20px;
  display: none;
  cursor: pointer;
  -webkit-font-smoothing:antialiased;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  background:var(--cyc-primary-color);
  transition: all .5s ease-in-out;
}
.go-top svg {
  position: absolute;
  top: 17px;
  left: 20px;
  transform: rotate(90deg);
}
.go-top svg path{
  fill: var(--cyc-white-color);
}
.go-top:hover{
  transform: translateY(-10px);
}
/*-------------- go-top section css end ----------*/
/*-------------- Banner section css start ----------*/


.shp-new-badge {
    background-color: #d32f2f;
    color: #fff; 
    position: absolute;
    top: 10px;
    left: 0;
    padding: 2px 10px;
    border-radius: 0 15px 15px 0;
}
.shp-new-badge span{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}