@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  /* font-size: 14px;
   color: var(--c6);
   padding: 0;
   margin: 0;
   line-height: 30px; */
}
.service-img{
    overflow:hidden;
}
.hover_img img{
    transition:all.5s;
}
.hover_img:hover img{
    transform:scale(1.1);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --primary: #3dbb02;
  --c1: #fff;
  --f1: "Times New Roman Cyr";
}

.spacing {
  padding: 100px 0px;
}
.wrapper{
  overflow: hidden;
}
::selection {
  background: var(--primary);
  color:var(--c1);
}

/* inner-wrapper */

.inner-header {
    height: 550px;
    background-position: top !important;
    background-attachment: fixed !important;
    position: relative;
    display: flex;
    align-items: center;
}
/*.inner-header:before {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  content: "";*/
/*  background: rgb(0 0 0 / 60%);*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 0;*/
/*}*/
.inner-header .container {
  position: relative;
}
.inner-header-title {
    backdrop-filter: blur(10px);
    background: linear-gradient(91deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 70%);
    border-radius: 50px;
    padding: 20px 50px;
}
.inner-header .inner-header-title h2 {
    color: var(--primary);
    font-size: 50px;
    font-weight: 700;
    font-family:var(--f1);
    
}
/* end inner-wrapper */

.both-grad {
  position: relative;
  z-index: 2;
}
.left-grad, .right-grad {
    position: absolute;
    width: 29%;
    border-radius: 1127.131px;
    opacity: 0.8;
    background: #5aff0d;
    filter: blur(363.1221618652344px);
    height: 420px;
    z-index: -1;
}
.left-grad {
  left: -10%;
  bottom: 0;
}
.right-grad {
  right: -10%;
  bottom: 0;
}
/* header */
header.header {
    padding: 10px 0;
    border-radius: 0px 0px 25px 25px;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff1a;
}
.main-logo {
    text-align: center;
    width: 102px;
    margin: 0 auto -50px auto;
    position: relative;
}
.main-logo::before {
    position: absolute;
    top: 78px;
    left: -30%;
    content: '';
    width: 160%;
    height: 60%;
    background-color: #ffffff1a;
    border-radius: 0px 0px 150px 150px;
	z-index: -1;
}
.main-menu ul {
    gap: 45px;
    display: flex;
}

.main-menu ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 19px;
  transition: all.5s;
  position: relative;
  z-index: 9;
  
  &:before{
		content: '';
		position: absolute;
		width: 100%;
		height: 30px;
		background: var(--primary);
		transform-style: preserve-3d;
		transform: scale(0) rotatey(0deg) skew(10deg);
		transition: 1.5s cubic-bezier(.43,1.91,.35,.74);
		z-index: -1;
	}	
}

.main-menu ul li.current_page_item a:before {
    transform: scale(1.3) rotatey(360deg) skew(10deg) !important;
} 
.web-btn a, .web-btn input {
    background-color: #3dbb02;
    color: #fff;
    padding: 7px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-family: var(--f1);
    font-weight: 700;
	position: relative;
    z-index: 2;
    overflow: hidden;
	transition: all .4s;
}

.main-menu ul li:hover a:before{
	transform: scale(1.3) rotatey(360deg) skew(10deg);
}

.header-right-main {
    display: flex;
    justify-content: end;
    gap: 35px;
    align-items: center;
}
.header-icons ul li a {
    color: var(--c1);
    font-size: 17px;
    transition:all.5s;
}
.header-icons ul li a:hover{
    color:var(--primary);
}
.header-icons ul {
    display: flex;
    gap: 25px;
}
.header-icons .count-number {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--c2);
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: -6px;
    right: -10px;
    text-align: center;
}
.header-icons ul li a:hover .count-number {
    color: var(--c1);
}

/*Search Bar*/

.search_bar {
    position: fixed;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #082200e0;
    z-index: 999999;
    opacity: 0;
    top: -100%;
    transition: .4s;
}
.search_bar.active{
	top:0;
	opacity: 1;
}
.searchbar_inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-modal-body {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    width: 500px;
}
.search-modal-body a {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 30px;
    color: #fff;
}
.search-m-body-item {
  position: relative;
	display: flex;
    gap: 7px;
}.search-m-body-item input::placeholder{
	color:#fff;
	font-weight:400;
}
.search-m-body-item input[type="text"] {
	width: 100%;
	color:#fff;
    padding: 13px 12px;
    border: 2px solid #ccc;
    border-radius: 2px;
    background: unset;
    outline: 0;
}
.search-m-body-item input[type="text"]:focus {
    border-color: #3dbb0270;
}
.search-m-body-item input[type="submit"]:hover {
    background-color: var(--c1);
    color: var(--primary);
}
.form-control:focus{
	box-shadow:unset;
}
.search-m-body-item input[type="submit"] {
    background: var(--primary);
    color: #fff;
    height: 54px;
    width: 105px;
    align-content: center;
    font-size: 17px;
    border-radius: 3px;
    border: none;
    transition: all .5s;
    font-family: var(--f1);
}
.search-modal-body form {
    width: 100%;
}

/*BANNER*/
.banner {
    position: relative;
}
.banner-img img {
    height: 100vh;
    object-fit: cover;
}
.banner:before {
    content: "";
    background-color: #00000061;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}
.banner-title {
    background: linear-gradient(90deg, rgb(110 108 108 / 41%) 0%, rgb(115 115 115 / 0%) 100%);
    padding: 50px 60px;
    border-radius: 30px;
	margin-top: 80px;
}
.web-title h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    width: max-content;
}
.web-title h4:after {
    background-image: url(https://badarsewizrd.com/wp-content/uploads/2024/11/h4.png);
    content: "";
    position: absolute;
    top: -34px;
    width: 32px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    right: -90px;
}
.web-title h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    padding-bottom: 26px;
    font-family: var(--f1);
}
.web-title h2 span.green-head {
    color: var(--primary);
    font-family: var(--f1);
}
.banner-btn {
    padding-top: 20px;
}
p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    font-family: "Inter", sans-serif;

}




/*ABOUT US*/
.body-green{
    background: rgba(6, 30, 0, 1);
    position:relative;
}
.body-green:before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 130px;
    background-image: url(https://badarsewizrd.com/wp-content/uploads/2024/11/Rectangle-114-1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.body-green:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 130px;
    background-image: url(/wp-content/uploads/2024/11/Rectangle-114-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    rotate: 180deg;
}
section.about-us {
    padding: 180px 0 100px 0px;
    position:relative;
}
.about-us:before {
    content: "";
    position: absolute;
    left: 150px;
    top: 80px;
    width: 190px;
    height: 150px;
    background-image: url(/wp-content/uploads/2024/11/Cap.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: flip 3s infinite ease-in-out;
}
.about-content.web-title {
    margin: 0 10px;
}
.about-us:after {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    width: 790px;
    height: 850px;
    background-image: url(/wp-content/uploads/2024/11/Thunder-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.about-img {
    position: relative;
    z-index: 10;
    padding-left: 70px;
}
.about-tree {
    position: absolute;
    width: 100px;
    transform: rotate(-45deg);
    animation: top-left 5s infinite ease;
	z-index: 2;
}
@keyframes top-left{
    0%{
        top: 30px;
    right: 0;
    }
    50%{
        top: 60px;
    right: -60px;
    }
    100%{
        top: 30px;
    right: 0;
    }
}

/*Products*/

.product-box-main {
    padding: 0px 30px;
    text-align:center;
}
.our_products .products_main ul li.product a {
    display: block !important;
}
.product-box-main .product-box-image {
    padding: 0 80px;
    position: relative;
    margin-bottom: 75px;
}
.product-box-main .product-box-image:before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    width: 91%;
    height: 60%;
    background-color: var(--primary);
    border-radius: 0px 0px 200px 200px;
    transform: translateX(-50%);
}
.product-box-main .product-box-image img {
    z-index: 999;
    position: relative;
    border-radius: 20px 0px 0px 20px;
    box-shadow: 0px 0px 21px 9px #00000094 !important;
	transition: all .5s;
}
.product-box-content h2.woocommerce-loop-product__title {
    font-size: 18px !important;
    color: var(--c1);
    font-family: var(--f1);
    padding-bottom: 12px !important;
    text-transform: uppercase;
}
.product-box-content span.price del {
    padding-right: 15px;
    color: rgba(255, 255, 255, 1) !important;
    font-size: 12px;
}
.product-box-content span.price ins {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight:500 !important;
}
.page-template-home .woocommerce ul.products li.first, .page-template-home .woocommerce-page ul.products li.first {
    clear: unset;
}
.product-slider .slick-arrow {
    color: rgb(255 255 255);
    font-size: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .5s;
}
.product-slider .slick-prev {
    left: -100px;
}
.product-slider .slick-next {
    right: -100px;
}
.product-box-main a.add_to_cart_button {
    background-color: var(--primary);
    width: max-content;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--f1);
    font-size: 18px;
    margin-top: 25px !important;
	transition: all .5s;
	margin: 0 auto;
}
.about-tree.product-tree {
    top: -200px;
    left: -20px;
    transform: rotate(55deg);
}


/*COntact US*/
.for-thunder:before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 790px;
    height: 850px;
    background-image: url(/wp-content/uploads/2024/11/Thunder-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    rotate: 180deg;
}
.contact-us:after {
    content: "";
    position: absolute;
    right: 100px;
    bottom: -30px;
    width: 150px;
    height: 110px;
    background-image: url(/wp-content/uploads/2024/11/Cap.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    rotate: -50deg;
}
.form-input input, .form-input textarea {
    width: 100%;
    padding: 16px 25px;
    border-radius: 30px;
    border: UNSET;
    background: linear-gradient(90deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 110%);
    outline: 0;
    color: rgb(255 255 255 / 75%);
    font-size: 14px;
}

.form-input input::placeholder ,.form-input textarea::placeholder{
    color: rgb(255 255 255 / 75%);
    font-family:var(--f1);
    text-transform:uppercase;
    font-size:14px;
}
.form-input {
    margin-bottom: 40px;
}
.submit-btn input{
    border:unset;
}
.contact-title {
    margin-bottom: 80px;
}
.contact-image img {
    width: 500px;
    position:relative;
    z-index:10;
}
.contact-us-page .submit-btn.web-btn {
    text-align: center;
}
/*Blogs*/
.blogs:before {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    width: 790px;
    height: 850px;
    background-image: url(/wp-content/uploads/2024/11/Thunder-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.services_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-item.service-item-2 {
    display: block;
    background: unset;
    padding: 0px;
}
.service-item.service-item-2 .service-img img {
    width: 100%;
    height: 100%;
}
.service-item.service-item-2 .service-content {
    padding: 30px 30px;
    background: linear-gradient(90deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 100%);
    border-radius: 30px;
    margin: 0 60px;
    position: relative;
    top: -90px;
}
.service-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(90deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 100%);
    border-radius: 20px;
}
.service-img{
    border-radius: 20px;
}
.service-img img {
    width: 648px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}
.service-content h4 {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--primary);
    font-family: var(--f1);
    font-weight: 700;
    padding-bottom: 10px;
}
.service-content h3.blog_title {
    font-size: 34px;
    color: var(--c1);
    font-family: var(--f1);
    transition: all .5s;
    padding-bottom: 14px;
    line-height: 40px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 40px;
}
.service-content h3.blog_title:hover{
    color:var(--primary);
}
.blog-btn a {
    color: var(--primary);
    font-family: var(--f1);
    font-size: 18px;
	transition: all .5s;
}
/*Footer*/
footer.footer {
    background-image: url(/wp-content/uploads/2024/11/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 5;
    padding-bottom: 50px;
}
footer.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(6 30 0 / 82%);
    z-index: -1;
}
.footer-logo{
    margin-bottom:10px;
}
.footer-content h4 {
    color: #3DBB03;
    font-size: 36px;
    font-weight: 600;
}
 .footer-icon ul{
     display:flex;
     gap:10px;
 }
.footer-icon ul li a {
    color: var(--primary);
    margin: 15px 15px 0px 0px;
    font-size: 18px;
	transition: all .5s;
}

.footer-2  h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.footer-content p {
    margin: 0px;
}
.footer-title h6 {
    font-size: 20px;
    color: var(--c1);
}

.footer-title {
    padding-bottom: 20px;
}
.footer-links ul li a {
    color: var(--c1);
    padding-bottom: 8px;
    font-size: 16px;
	transition: all .5s;
}
.footer-links ul li i {
    color: var(--primary);
    padding-right: 15px;
    position: absolute;
    top: 4px;
    left: 0;
}
.footer-form.form-input input::placeholder {
    font-size: 12px;
}
.footer-from-btn input[type="submit"] {
    background-color: var(--primary);
    color: var(--c1);
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 12px;
    outline: 0;
    border: unset;
    font-family: var(--f1);
    font-size: 18px;
}
.footer-bottom-main {
    background-color: var(--primary);
    border-radius: 50px;
    padding: 20px 40px;
}
.statement h6{
    color:var(--c1);
}
.statement.copyright h6 a {
    font-weight: 600;
    padding-left: 2px;
    color: #081d05;
}

.statement.privacy ul {
    display: flex;
    justify-content: end;
    gap: 20px;
}
.statement.privacy ul li a {
    color: var(--c1);
	transition: all .5s;
}
.footer-bottom {
    margin-top: 40px;
}
.for-shade {
    position: relative;
}
.for-shade:after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    top: 0px;
    -moz-box-shadow: 10px 10px 106px 99px rgba(0, 0, 64, 1);
    box-shadow: 10px 10px 106px 89px rgb(5 26 0);
    transform: rotate(178deg);
    z-index: -1;
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(10deg); }
  3% { transform: rotate(-18deg); }
  5% { transform: rotate(14deg); }
  7% { transform: rotate(-12deg); }
  9% { transform: rotate(10deg); }
  11% { transform: rotate(-18deg); }
  13% { transform: rotate(16deg); }
  15% { transform: rotate(-14deg); }
  17% { transform: rotate(12deg); }
  19% { transform: rotate(-10deg); }
  21% { transform: rotate(8deg); }
  23% { transform: rotate(-6deg); }
  25% { transform: rotate(4deg); }
  27% { transform: rotate(-2deg); }
  29% { transform: rotate(5deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }
  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}
.web-btn a:hover::before {
  left: 0;
}
.web-btn a::before, .web-btn a::after {
  width: 50%;
  top: 0;
  position: absolute;
  content: '';
  height: 100%;
  background-color: var(--c1);
  z-index: -1;
  transition: all .4s;
}
.web-btn a::before {
  left: -100%;
}
.web-btn a::after {
  right: -100%;
}
.web-btn a:hover::after {
  right: 0;
}
.web-btn a:hover{
	color: #000;
}
.footer-links ul li a:hover {
    color: var(--primary);
}
.blog-btn a:hover {
    color: var(--c1);
}
.footer-icon ul li a:hover {
    color: var(--c1);
}
.submit-btn input:hover {
    background-color: var(--c1);
    color: var(--primary);
}


.product-box-main a.button.product_type_variable.add_to_cart_button:hover {
    background-color: rgb(255 255 255);
    color: var(--primary);
}
.product-box-content {
    text-align: center;
}
.product-box-main:hover .product-box-image img {
    transform: rotateY(180deg);
}
.statement.privacy ul li a:hover {
    color: rgb(0 0 0);
}

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: #061e00;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--primary) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: rgb(255 255 255) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}
.product-slider .slick-arrow:hover {
    color: var(--primary);
}
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}
.music-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.music-btn a {
    color: var(--c1);
    font-size: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 6px;
    display: flex !important;!i;!;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.music-btn a:hover {
    background-color: rgb(0 0 0);
}



/*PAGE: ABOUT US*/

section.page-about-us .about-img {
    padding-right: 70px;
    padding-left: 0px;
}
section.page-about-us{
     padding: 220px 0;
}
section.page-about-us.for-thunder:before {
    animation: unset;
    transform: rotateX(180deg);
}
section.page-about-us:after {
    display: none;
}
.about-list ul{
    padding-top: 20px;    
}
.about-list ul li {
    font-style: italic;
    padding-left: 90px;
    padding-bottom: 11px;
    position: relative;
	font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}
.about-list ul li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 9px;
    width: 56px;
    height: 20px;
    background-image: url(/wp-content/uploads/2024/11/Arrow-4.png);
    background-repeat: no-repeat;
}
.valeus_item h2 {
    color: var(--c1);
    font-family: var(--f1);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 15px;
    letter-spacing: 1px;
    position:relative;
}
.valeus_item h2:before {
    content: "\f178";
    position: absolute;
    top: 0;
    left: -50px;
    width: 100%;
    height: 20px;
    font-family: "Font Awesome 5 Pro";
    color: var(--primary);
    font-weight: 400;
    font-size: 22px;
    top: 4px;
}
.our_values_list {
    padding-top: 25px;
}
.valeus_item {
    padding-bottom: 20px;
}
.our_values_list {
    padding-top: 25px;
    position: relative;
}
.our_values_list:before {
    content: "";
    position: absolute;
    left: -53px;
    top: -165px;
    width: 1px;
    height: 623px;
    background-color: var(--primary);
}
.about-tree.value-tree {
    top: -90px !important;
}

.our-values:after {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    width: 790px;
    height: 850px;
    background-image: url(/wp-content/uploads/2024/11/Thunder-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
/*PAGE: BLOG*/
.blog-img.service-img img {
    width: 100%;
    height: 100%;
}
.blog-main-item {
    padding: 40px;
    background: linear-gradient(90deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 100%);
    border-radius: 50px;
}
section.blog-page .service-item {
    display: block;
    padding: 20px 27px;
}
.service-content.blog-content h3 {
    font-size: 44px;
    padding-bottom: 20px;
    padding-top: 8px;
}
section.blog-page .service-img img{
    width:100%;
    height: 230px;
}
.blog-page-content {
    padding-top: 25px;
}
.blog-page-content h3 {
    font-size: 28px !important;
    padding-bottom: 10px !important;
}
.blog-page-content p {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 70px;
}
section.blog-page .left-grad {
    top: 20%;
}
.two-trees:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 250px;
    background-image: url(/wp-content/uploads/2024/11/h4.png);
    background-repeat: no-repeat;
    background-size: cover;
    rotate: 45deg;
    animation: tree-2 5s infinite ease;
}
.two-trees:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 250px;
    background-image: url(/wp-content/uploads/2024/11/h4.png);
    background-repeat: no-repeat;
    background-size: cover;
    rotate: -45deg; 
    animation: tree 5s infinite ease;
} 

@keyframes tree{
    0%{
         bottom: 0;
         right: 0;
    }
   50% {
        bottom: 20px;
        right: 60px;
    }
    100%{
        bottom: 0;
         right: 0;
    }
}
@keyframes tree-2{
    0%{
         bottom: 0;
         left: 0;
    }
   50% {
        bottom: 20px;
        left: 40px;
    }
    100%{
        bottom: 0;
         left: 0;
    }
}

.service-img a {
    display: block !important;
}



/*PAGE: Contact Us*/
section.contact-us-page .submit-btn input {
    padding: 12px 100px;
    position: relative;
}
section.contact-us-page.spacing {
    padding: 120px 0;
}


/* section-single-service */

.side-links-main ul li a {
    background: linear-gradient(91deg, rgba(70, 70, 70, 0.4) 0%, rgba(115, 115, 115, 0) 100%);
    padding: 15px 20px;
    width: 100%;
    font-size: 15px;
    display: flex !important;
    color: var(--c1);
    justify-content: space-between;
    transition: all .5s;
    font-weight: 600;
    align-items: center;
    border-radius: 5px;
}
.side-links-main ul li a:hover{
    color:var(--primary);
}
.side-links-main ul li a:hover {
    background-color: var(--c3);
}

.side-links-main ul li {
    margin-bottom: 15px;
}
.single-cont-inner {
    display: flex;
    gap: 25px;
	margin-top: 25px;
    align-items: center;

}
.single-inner-img,.single-inner-list {
    width: 50%;
}
.single-content-img img {
    height: 450px;
    object-fit: cover;
}
.single-content h4 {
    color: #fff;
    padding: 25px 0;
    font-family: var(--f1);
    font-size: 30px;
}
.single-content-img {
    margin-bottom: 30px;
}

.single-content-main h2 {
    margin-bottom: 15px;
    color: var(--c2);
    font-weight: 600;
    font-size: 26px;
}

.single-content-main p {
    margin-bottom: 15px;
}

.single-content-main h3 {
    font-size: 22px;
    color: var(--c2);
    margin-bottom: 15px;
    font-weight: 600;
}
.single-inner-list ul li {
    color: var(--c2);
    margin-bottom: 15px;
    position: relative;
    padding-left: 26px;
}

.single-inner-list ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 13px;
    color: var(--c3);
    content:
    "\f00c";
    font-family: "Font Awesome 5 Pro";
}
.single-inner-img img,.single-content-img img {
    transition: all .5s;
}

.single-inner-img, .single-content-img {
    overflow: hidden;
	border-radius: 8px;
}
.quote-form-main {
    padding: 25px;
    background-color: #143a02;
    border-radius: 5px;
}

.quote-form-main h2 {
   font-size: 28px;
    font-weight: 600;
    color: var(--c1);
    margin-bottom: 20px;
    text-align: center;
}

.quote-form-item input {
    background: unset;
    border: 1px solid #ffecec26;
    padding: 12px 15px;
    border-radius: 4px;
    outline: 0;
    width: 100%;
    color: var(--c2);
}
.quote-form-item {
    margin-bottom: 15px;
}
.quote-form-item input:focus {
    border-color: var(--c2);
}
.quote-form-item input::placeholder {
    color: #ffecec8c;
    font-size: 15px;
}
.quote-submit input {
    padding: 10px 20px;
    background-color: var(--primary);
    border: 0;
    outline: 0;
    color: var(--c1);
    font-weight: 600;
    border-radius: 4px;
    transition: all .7s;
    width: 100%;
}
.quote-submit input:hover {
    background-color: var(--c1);
    color: var(--primary);
}
.quote-submit {
    text-align: center;
    margin-top: 20px;
}
.side-links-main {
    margin-bottom: 30px;
}
section.single-service.spacing {
    padding: 150px 0 100px 0px;
}
.single-content h2 {
    color: var(--c1);
    font-family: var(--f1);
    font-size: 34px;
    font-weight: 600;
    padding-bottom:10px;
}
.single-content h2 span{
    color:var(--primary);    
    font-family: var(--f1);
}
section.single-service .right-grad {
    top: 0 !important;
}

/* SHOP PAGE CSS */

.shop-page-sec-main form.woocommerce-ordering select {
    border: 1px solid #e1e1e1;
    padding: 6px 10px;
    outline: 0;
	background: unset;
}
.shop_count_main_item p.woocommerce-result-count, .shop-page-sec-main form.woocommerce-ordering select{
	font-size: 15px;
	font-weight: 400;
	color: var(--c1);
}
.shop-page-sec-main form.woocommerce-ordering select:focus {
    border-color: var(--c1);
}
.shop-page-sidebar h3.wp-block-heading {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--c3);
    margin-bottom: 20px;
    font-family: "Cinzel", serif;
}
.shop-page-sidebar ul.wc-block-product-categories-list li a, .shop-page-sidebar ul.wp-block-list li {
    font-size: 15px;
    font-weight: 400;
    color: var(--c3);
    transition: all .4s;
    display: block;
}
.shop-page-sidebar .wp-block-woocommerce-product-categories.wc-block-product-categories.is-list {
    margin-bottom: 30px;
}
.shop-page-sidebar ul.wp-block-list li{
	margin-bottom: 10px;
}
.shop-page-sidebar ul.wc-block-product-categories-list li a:hover {
    color: var(--c1);
    padding-left: 10px;
}
.shop-page-sidebar ul.wc-block-product-categories-list li {
    position: relative;
    margin-bottom: 10px;
}
.shop-page-sidebar ul.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    background-color: var(--c1);
    width: 27px;
    height: 19px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c2);
}
.shop-page-sidebar ul.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count::before, .shop-page-sidebar ul.wc-block-product-categories-list li span.wc-block-product-categories-list-item-count::after {
    display: none;
}
.shop-page-sidebar .wc-blocks-filter-wrapper input.wc-block-formatted-money-amount {
    font-size: 12px;
    outline: 0;
    border: 1px solid #e1e1e1 !important;
}
.shop-page-sidebar .wc-blocks-filter-wrapper input.wc-block-formatted-money-amount:focus {
    border-color: var(--c1) !important;
}
.shop_count_main_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(61, 187, 3, 1);
    padding-bottom: 15px;
}
.shop_count_main_item p.woocommerce-result-count, .shop_count_main_item form.woocommerce-ordering {
    margin: 0px;
}
.shop-page-sec-main ul.products {
    display: flex;
    flex-wrap: wrap;
    row-gap: 100px;
    column-gap: 17px;
}
.shop-page-sec-main ul.products li.product {
    width: 32.4%;
    margin: 0px;
}
.shop-page-sec-main ul.products::before, .shop-page-sec-main ul.products::after {
    display: none;
}
.shop-page-sidebar {
    border: 1px solid #e1e1e1;
    padding: 20px 20px;
}
.shop-page-sec-main ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
}
body {
    background-color: rgba(6, 30, 0, 1);
}
.shop-page-sec {
    padding: 100px 0px;
}
.shop-page-sec-main form.woocommerce-ordering select option {
    color: rgb(0 0 0);
}

/* SINGLE PRODUCT CSS */

.single-pro-image-main .woocommerce-product-gallery__image a {
    display: block !important;
}
.single-pro-content-main h1.product_title {
    color: var(--c1);
    font-size: 30px;
    margin-bottom: 8px;
    font-family: var(--f1);
}
.single-pro-content-main p.price {
    color: var(--c1) !important;
    font-size: 18px !important;
    font-weight: 400;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}
.single-pro-content-main .woocommerce-product-details__short-description li {
    margin-bottom: 4px;
    list-style: disc;
    line-height: 1.7;
    color: var(--c1);
}
.single-pro-image-main .woocommerce-product-gallery {
    display: flex;
    flex-direction: row-reverse;
	gap: 15px;
}
.single-pro-image-main .woocommerce-product-gallery .flex-viewport {
    width: 85%;
}
.single-pro-content-main .woocommerce-product-details__short-description ul, .single-pro-content-main .woocommerce-product-details__short-description ol {
    margin-bottom: 10px;
    padding-left: 20px;
}
.single-pro-content-main .woocommerce-product-details__short-description p {
    margin-bottom: 10px;
}
.single-pro-content-main .woocommerce-product-details__short-description li:last-child {
    margin-bottom: 0px;
}
.single-pro-content-main table.variations label {
    font-weight: 600 !important;
    color: var(--c3);
}
.single-pro-content-main table.variations a.reset_variations {
    color: var(--c1);
}
.single-pro-content-main .quantity input.qty {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    outline: 0;
    color: var(--c1);
    background: unset;
}
.single-pro-content-main .quantity input.qty:focus {
    border-color: var(--c1);
}
.single-pro-content-main button.single_add_to_cart_button{
   width: 400px; 
}
.single-pro-content-main button.single_add_to_cart_button, 
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button{
   height: 50px; 
}
.single-pro-content-main button.single_add_to_cart_button, 
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button{
    background-color: var(--primary) !important;
    opacity: 1 !important;
    font-weight: 500;
    transition: all .4s;
    margin-left: 10px;
    color: var(--c1);
    border: 0;
    font-family: var(--f1);
    font-size: 18px;
}
.single-pro-content-main button.single_add_to_cart_button:hover,
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button:hover,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover{
    background-color: var(--c1) !important;
    color: rgb(0 0 0) !important;
}
.single-pro-content-main .product_meta {
    font-size: 15px;
    color: var(--c3);
    font-weight: 600;
	line-height: 1.7;
}
.single-pro-content-main .product_meta a {
    color: var(--c1);
    transition: all .4s;
	font-weight: 400;
}
.single-pro-content-main .product_meta a:hover {
    color: var(--c3);
}
.single-data-item {
    padding-top: 100px;
}
body.single-product .woocommerce-tabs ul li:before, body.single-product .woocommerce-tabs ul li:after, body.single-product .woocommerce-tabs ul:before, body.single-product .woocommerce-tabs ul:after {
    display: none !important;
}
body.single-product .woocommerce-tabs ul li {
    margin: 0px !important;
    padding: 0px !important;
    background-color: unset !important;
    border: 0 !important;
}
body.single-product .woocommerce-tabs ul {
    padding: 0px !important;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e1e1e1;
}
body.single-product .woocommerce-tabs ul li a {
    position: relative;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500 !important;
    display: block !important;
    color: #999999 !important;
}
body.single-product .woocommerce-tabs ul li a:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1.5px;
    background-color: var(--c4);
    transition: all .5s;
}
body.single-product .woocommerce-tabs ul li a:hover:after {
    left: 0;
}
body.single-product .woocommerce-tabs ul li.active a {
    color: var(--c1) !important;
}
body.single-product .woocommerce-tabs ul li.active a::after {
    left: 0;
}
.woocommerce-Tabs-panel h2, .related.products > h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--c1);
    font-family: var(--f1);
}
.woocommerce-Tabs-panel p {
    margin-bottom: 15px;
}
.single-data-item form.variations_form.cart {
    margin-top: 20px;
}
body.single-product .woocommerce-Reviews p, body.single-product .woocommerce-Reviews span {
    color: var(--c1);
}
body.single-product .woocommerce-Reviews label {
    font-weight: 500;
    color: var(--c1);
    margin-bottom: 6px;
}
body.single-product .woocommerce-Reviews p.comment-form-cookies-consent input[type=checkbox] {
    transform: translateY(1px);
}
body.single-product .woocommerce-Reviews input[type="text"], body.single-product .woocommerce-Reviews input[type="email"], body.single-product .woocommerce-Reviews textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    height: 45px;
    transition: all .4s;
    outline: 0;
    background: unset;
    color: var(--c1);
}
body.single-product .woocommerce-Reviews input[type="text"]:focus, body.single-product .woocommerce-Reviews input[type="email"]:focus, body.single-product .woocommerce-Reviews textarea:focus {
    border-color: var(--c1);
}
body.single-product .woocommerce-Reviews textarea {
    height: 180px !important;
}
body.single-product .woocommerce-Reviews input#submit,
.woocommerce-message a.button, 
body.woocommerce-account .woocommerce-form-login__submit,
form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button,
.woocommerce-MyAccount-content button.button,
.woocommerce-info a.button {
    background: unset !important;
    border: 1px solid var(--primary) !important;
    border-radius: 0px !important;
    font-weight: 500 !important;
    color: var(--c1) !important;
    padding: 15px 30px !important;
    transition: all .4s;
    font-family: var(--f1);
}
body.single-product .woocommerce-Reviews input#submit:hover, 
.woocommerce-message a.button:hover, 
body.woocommerce-account .woocommerce-form-login__submit:hover, 
form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button:hover,
.woocommerce-MyAccount-content button.button:hover,
.woocommerce-info a.button:hover {
    background-color: var(--primary) !important;
    color: var(--c1) !important;
}
body.single-product .woocommerce-Reviews p.stars span a {
    color: var(--c1);
}
.woocommerce-message, .woocommerce-info {
    border-top-color: var(--primary);
}
.woocommerce-message::before, .woocommerce-info::before {
    color: var(--primary);
}
body.single-product .woocommerce-message {
    margin-top: 30px;
    margin-bottom: 0px;
    color: var(--c1);
    background: unset;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    width: 15%;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
}
.single-pro-image-main ol.flex-control-nav li {
    width: 100% !important;
	margin-bottom: 5px !important;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-arrow {
    position: absolute;
    z-index: 99;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #00000052;
    font-size: 12px;
    cursor: pointer;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-prev {
    top: 10px;
}
.single-pro-image-main ol.flex-control-nav.flex-control-thumbs .slick-next {
    bottom: 10px;
}
.single-pro-image-main ol.flex-control-nav .slick-list.draggable {
    height: 100% !important;
}
.single-pro-image-main ol.flex-control-nav li img {
    height: 100px !important;
    object-fit: cover;
}
.single-pro-content-main p.price ins {
    text-decoration: none;
    font-weight: 500 !important;
}
.related.products ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
	margin-top: 40px;
}
.related.products ul.products::before, .related.products ul.products::after {
    display: none;
}
.related.products ul.products li.product {
    margin: 0px;
    width: 32.33%;
}
.related.products ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
}
.related.products {
    margin-bottom: 100px;
}
.our_products .web-title {
    margin-bottom: 60px;
}
.single-pro-content-main .woocommerce-product-details__short-description {
    margin-bottom: 20px;
}
.single-product table.woocommerce-product-attributes {
    color: rgb(255 255 255);
}
.single-product div#reviews small a {
    color: var(--primary);
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item {
    background: unset;
    box-shadow: unset;
    border: 1px solid var(--primary);
    color: #fff;
    padding: 0px 10px !important;
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item:hover {
    background-color: var(--primary);
    box-shadow: unset;
    color: var(--c1);
}
.single-pro-content-main table.variations ul.variable-items-wrapper li.variable-item.selected {
    background-color: var(--primary) !important;
    color: var(--c1) !important;
	box-shadow: unset;
}
.single-pro-content-main table.variations th.label {
    color: var(--c1);
}
.single-pro-content-main table.variations th.label label, .single-pro-content-main table.variations th.label span {
    font-weight: 400 !important;
}
.single-pro-content-main .single_variation_wrap span.price {
    color: var(--primary) !important;
}
.single-pro-content-main .single_variation_wrap .woocommerce-variation-add-to-cart {
    margin-top: 10px;
}
.product-box-content span.price {
    color: var(--c1) !important;
    font-size: 16px !important;
    margin-bottom: 0px !important;
}

/*CART PAGE CSS*/

body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
    width: 100%;
    margin: 0px;
}
body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart.wp-block-woocommerce-filled-cart-block.is-large {
    margin-top: 100px;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid hsl(0deg 0% 100%);
    margin-bottom: 10px;
	color: var(--c1);
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wp-block-woocommerce-cart-order-summary-block .wc-block-cart__totals-title {
    padding-left: 16px;
}
form#wc-block-components-totals-coupon__form button.wc-block-components-totals-coupon__button {
    opacity: 1 !important;
    border: 1px solid var(--primary);
    background: unset;
    color: var(--c1);
    transition: all .4s;
    font-family: var(--f1) !important;
}
form#wc-block-components-totals-coupon__form button.wc-block-components-totals-coupon__button:hover {
    background-color: var(--primary);
    color: var(--c1);
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid.wp-block-product-new.wc-block-product-new.has-4-columns {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block hr, body.woocommerce-cart .wp-block-woocommerce-empty-cart-block hr~h2 {
    display: none;
}
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
    padding: 50px 0px;
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items {
    border: 1px solid hsl(0deg 0% 100%);
	color: var(--c1);
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items th.wc-block-cart-items__header-image {
    text-align: center;
}
body.woocommerce-cart .wc-block-cart__main table.wc-block-cart-items a.wc-block-components-product-name {
    color: var(--c1);
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 9;
}
body.woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button span {
    font-family: var(--f1);
}

/*CHECKOUT PAGE CSS*/

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    margin-top: 70px;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button {
    color: var(--c1);
    transition: all .4s;
}
body.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--c3);
}
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid hsl(0deg 100% 96.77%) !important;
	color: var(--c1);
}
.woocommerce-checkout form.wc-block-checkout__form {
    color: var(--c1);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button span {
    font-family: var(--f1);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    margin-left: 0px;
}

/* MY ACCOUNT PAGE CSS */

body.woocommerce-account form.woocommerce-form-login input.input-text, 
form.woocommerce-ResetPassword.lost_reset_password input.input-text, 
.woocommerce-MyAccount-content input.input-text,
.woocommerce-MyAccount-content .select2-container .select2-selection--single{
    height: 45px;
    border: 1px solid #cfc8d8;
    padding: 0px 10px;
    transition: all .4s;
    border-radius: 0px;
}
span.select2-selection.select2-selection--single span:first-child{
    height: 100%;
    line-height: 45px;
    padding: 0px;
}
span.select2-selection.select2-selection--single span:nth-child(2) {
    top: 10px;
    right: 6px;
}
body.woocommerce-account form.woocommerce-form-login label, 
form.woocommerce-ResetPassword.lost_reset_password label, 
.woocommerce-MyAccount-content label{
    font-weight: 600;
    color: var(--c4);
}
body.woocommerce-account form.woocommerce-form-login input.input-text:focus, 
form.woocommerce-ResetPassword.lost_reset_password input.input-text:focus,
.woocommerce-MyAccount-content input.input-text:focus,
.woocommerce-MyAccount-content .select2-container .select2-selection--single:focus{
    border-color: var(--c1);
}
body.woocommerce-account form.woocommerce-form-login .lost_password a {
    color: var(--c1);
    font-weight: 500;
}
body.woocommerce-account h2 {
    color: var(--c1);
    font-family: var(--f1);
}
body.woocommerce-account .main {
    margin: 80px 0px 70px 0px;
}
body.woocommerce-account form.woocommerce-form-login .woocommerce-form-login__rememberme {
    transform: translateY(10px);
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    border: 1px solid var(--c1);
    box-shadow: 0px 4px 15px -7px rgb(0 0 0 / 50%);
    width: 25%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--c1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 15px;
    display: block !important;
    position: relative;
    text-transform: capitalize;
    color: var(--c1);
    font-weight: 500;
    font-size: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--primary);
    color: var(--c1) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:after {
    content: "";
    width: 31px;
    height: 100%;
    background: var(--primary);
    position: absolute;
    right: -10px;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
    top: 0;
    opacity: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:after,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:after {
    opacity: 1;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
	color: var(--c4);
    padding-left: 40px;
}
.woocommerce-MyAccount-content p a,
.woocommerce-Address-title a{
    color: var(--c1);
    font-weight: 500;
}
.woocommerce-MyAccount-content h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.woocommerce-MyAccount-content .u-columns.woocommerce-Addresses {
    margin-top: 10px;
}
form.woocommerce-form.woocommerce-form-login.login {
    margin-bottom: 0px;
}
.woocommerce-MyAccount-content address {
    font-size: 15px;
}
.woocommerce-info {
    background: unset;
    color: var(--c1);
}
.woocommerce-MyAccount-content header.woocommerce-Address-title a.edit {
    transform: translateY(-28px);
    font-weight: 400;
    font-size: 15px;
}
.woocommerce-MyAccount-content address {
    color: var(--c1);
}

.shop-page-sec-main a.added_to_cart {
    background-color: var(--primary);
    color: #fff;
    margin-top: 20px;
    padding-top: 0;
    padding: 7px 38px;
    border-radius: 50px;
    font-family: var(--f1);
    font-weight: 700;
    font-size: 19px;
    transition:all.5s;
}
.shop-page-sec-main a.added_to_cart:hover{
    background-color:var(--c1);
    color:#000;
}

.products_item a.added_to_cart{
    padding:7px 20px;
}
.woocommerce-cart .with-empty-cart-icon {
    color: var(--c1);
    position: relative;
    z-index: 9;
}
.woocommerce-cart .inner-header-title, .woocommerce-checkout .inner-header-title, .woocommerce-account .inner-header-title  {
    margin-top: 100px;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    position: relative;
    z-index: 9;
}
/* RESPONSIVE MENU */

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 30, 0, 1);
    z-index: 9999;
	transition: all .5s;
}
.responsive-menu.active{
	left: 0;
}
.responsive-menu-main {
    height: 100%;
    padding: 30px 30px;
    position: relative;
}
.responsive-logo {
    width: 100px;
    margin-bottom: 30px;
}
.responsive-links ul li a {
    color: var(--c1);
    padding: 10px 0px;
	display: block;	
}
.responsive-links ul li {
    border-bottom: 1px solid #ffffff7a;
    position: relative;	
}
.resp-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 6px 0px;
}
.responsive-icon a i {
    display: block;
}
.responsive-icon {
    position: absolute;
    top: 50px;
    right: 40px;
}
.responsive-icon a {
    color: var(--c1);
    font-size: 30px;
}
.responsive-links ul li:last-child {
    border: 0;
}
body.scroll-stop {
    overflow: hidden;
}
.resp-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.resp-social ul li a i {
    display: block;
}
.resp-social ul li a {
    padding: 10px;
    color: var(--primary);
    font-size: 18px;
}
.responsive-links ul li i {
    position: absolute;
    right: 0;
    top: 13px;
}
.responsive-links ul li ul {
    padding-left: 30px;
    border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
    content: "\f068";
}
.woocommerce-Tabs-panel iframe {
    width: 60%;
    height: 400px;
}

.footer-links ul li span {
    display: block;
    color: var(--primary);
}
.footer-links ul li:has(i) {
    position: relative;
    padding-left: 30px;
}
.footer-form.form-input p {
    margin: 0;
}

/*SECTION VIDEO*/

.video-box video {
    width: 100%;
    display: block;
    border-radius: 15px;
}
.video-item {
    position: relative;
    padding: 0px 100px;
    z-index: 3;
}
.video-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-icon a {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex !important;!i;!;
    align-items: center;
    justify-content: center;
    color: var(--c1);
    font-size: 25px;
    transition: all .5s;
}
.video-item::before, .video-item::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 70%;
    background-color: var(--primary);
    z-index: -1;
}
.video-item::before {
    left: 0;
    transform: skew(0deg, 20deg) translateY(-50%);
}
.video-item::after {
    right: 0;
    transform: skew(0deg, -20deg) translateY(-50%);
}
.video-box {
    position: relative;
}
.video-sec {
    padding: 0px 0px 150px 0px;
}
.video-icon a:hover {
    background-color: rgb(0 0 0);
}

/* ORDER RECIEVED */

.woocommerce-order-received section .main {
    padding: 100px 0px;
    color: var(--c1);
}
.woocommerce-order-received section .main table td a {
    color: var(--primary);
}
.woocommerce-order-received section .main table {
    border-color: var(--c1);
    margin-top: 20px;
}
.woocommerce-order-received section .main table td, .woocommerce-order-received section .main table th {
    border-color: var(--c1) !important;
}
.woocommerce-order-received p.woocommerce-notice--success {
    font-size: 30px;
    font-weight: 600;
}

/* PRIVACY POLICY SECTION */

.policy-content-main h2 {
    font-size: 40px;
    font-family: var(--f1);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}
.policy-content-main h4 {
    color: var(--c1);
    margin-bottom: 20px;
}
.policy-content-main p {
    margin-bottom: 20px;
}
.policy-content-main p a {
    color: var(--primary);
}
.policy-content-main ul li {
    margin-bottom: 10px;
    color: var(--c1);
    list-style: disc;
}
.policy-content-main ul {
    padding-left: 20px;
    margin-bottom: 20px;
}