@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Queensila';
    src: url(../fonts/Queensila.ttf);
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 95px;
    line-height: 101px;
    color: #111211;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: 'Queensila';
}

h1 span {
    color: #448216;
}

h2 {
    font-family: 'Queensila';
    font-size: 65px;
    line-height: 66px;
    color: #111211;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Queensila';
    font-size: 80px;
    line-height: 86px;
    color: #111211;
    font-weight: 500;
    margin: 0 0 10px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 25px;
    color: #100f0f;
    font-weight: 500;
    margin: 0 0 10px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #121111;
    font-size: 13px;
    line-height: 23px;
    font-family: 'Montserrat';
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 20px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.header-logo img {
    width: 65%;
    object-fit: cover;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.cart-btn i {
    color: #fff;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.estimate-btn ul li a {
    padding: 0 !important;
}

.estimate-admin {
    font-size: 12px;
    font-family: 'Montserrat';
    color: #000;
    background: #f6f7e7;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 30px;
}

.estimate-btn ul li a span {
    padding: 0 30px;
}

.estimate-admin i {
    font-size: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #065a65;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 0 0 5px;
}

.estimate-btn ul li:first-child {
    margin: 0 15px 0 0;
}

.estimate-btn ul {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    width: 100%;
}

.carousel-item >img {
    width: 100%;
    object-fit: cover;
}

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 23px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 5%;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text p {
    font-size: 12px;
    color: #121111;
    letter-spacing: 0;
    line-height: 25px;
    font-family: 'Montserrat';
    width: 80%;
    margin: 0 0 20px;
}

.btn1 {
    background: #448216;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 14px;
    color: #fff;
    padding: 0 5px 0 10px;
    gap: 30px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
}

.btn1 i {
    background: #015464;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
}

.btn1:hover span {
    display: none;
}

.btn1:hover i {
    width: 180px;
    border-radius: 30px;
    color: #fff;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_img {
    position: relative;
}

.banner_img:before {
    content: '';
    position: absolute;
    /*border: 1px solid #f6f7e7;*/
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: -33px;
    left: -13px;
}

section.main_slider {
    position: relative;
}

section.main_slider:before {
    content: '';
    position: absolute;
    /*background-image: url(../images/banner-bottom.png);*/
    width: 100%;
    height: 8%;
    bottom: -31px;
    left: 0;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-media {
    position: absolute;
    right: 2%;
    top: 30%;
    z-index: 6;
    background: #478516;
}

.banner-media ul li a i {
    font-size: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
        transition: 0.5s ease-in-out;
}

.banner-media ul li {
    margin: 0 0 20px;
}

.banner-media ul li a i:hover {
    background: #63b526;
    transition: 0.5s ease-in-out;
}

.banner-media ul li h6 {
    font-size: 22px;
    color: #fff;
    font-family: 'Queensila';
    writing-mode: tb;
    margin: 0;
    line-height: 30px;
    padding: 120px 0 0 0;
}

section.main_slider:after {
    content: '';
    position: absolute;
    /*border: 1px solid #fff;*/
    height: 100%;
    top: 0;
    right: 50px;
}

.banner-tree {
    position: absolute;
    bottom: 6%;
    left: 30%;
}

.banner_text h1 {
    position: relative;
}

.banner_text h1:before {
    content: '';
    position: absolute;
    /*background-image: url(../images/line-point.png);*/
    width: 66%;
    height: 25%;
    background-repeat: no-repeat;
    right: -30%;
    top: 20%;
    animation: lenght2 20s ease-in-out infinite;
}

@keyframes lenght2 {
    0%{width: 66%;}
    50%{width: 24%;}
    100%{width: 66%;}
}
/*banner css end*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/*About Stsrt*/

section.about-sec {
    padding: 100px 0;
    position: relative;
}

h2 span {
    display: block;
}
.about-img img {
    object-fit: cover;
    width: 100%;
}

section.about-sec:before {
    content: '';
    position: absolute;
    background-image: url(../images/line-point.png);
    width: 33%;
    height: 5%;
    background-repeat: no-repeat;
    top: 160px;
    right: 0;
    animation: lenght 10s ease-in-out infinite;
}

@keyframes lenght {
    0% {width: 33%;}
    50% {width: 0%;}
    100% {width: 33%;}
}
/*About End*/

/*Product STart*/

.product-main {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 0 0 20px 0;
}

.product-img {
    text-align: center;
    padding-bottom: 30px;
}

.product-img img {
    width: 60%;
    object-fit: cover;
    height: 340px;
}

.product-txt {
    background: #cccccc;
    border-radius: 20px;
    padding: 20px;
    transition: 0.5s ease-in-out;

}

.product-txt h5 span {
    display: block;
    position: relative;
}

.product-txt p {
    font-size: 14px;
}

.product-txt h4 {
    font-size: 30px;
    font-family: 'Montserrat';
    color: #100f0f;
    font-weight: 600;
    margin: 0;
}

.product-main ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 0;
}

.product-main ul li i {
    color: orange;
    font-size: 11px;
}

.product-main ul li span {
    font-size: 25px;
    color: #141313;
    font-family: 'Montserrat';
}

.shopping-bag i {
    font-size: 20px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #fff !important;
    border: 15px solid #f3f3f3;
    margin-top: -30px;
    transition: 0.5s ease-in-out;

}

.product-txt h5 span:before {
    content: '';
    position: absolute;
    width: 70%;
    right: -20px;
    bottom: 10px;
    height: 1px;
    background: #a7a7a7;
}

section.product-sec {
    padding: 0 0 120px;
    position: relative;
}

section.product-sec:before {
    content: '';
    position: absolute;
    /* background-image: url(../images/banner-bottom.png); */
    width: 100%;
    height: 8%;
    bottom: -51px;
    left: 0;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    border-top: 2px solid #448216;
}

.product-main:hover .product-txt {
    background: #448216;
    transition: 0.5s ease-in-out;
}

.product-main:hover .product-txt * {
    color: #fff;
}


.product-main:hover .shopping-bag i {
    background: #448216;
    transition: 0.5s ease-in-out;
}

.product-tree {
    position: absolute;
    top: -20%;
    right: -4%;
}

/*Product End*/

/*Contact Start*/

section.home-contact-sec {
    background: #448216;
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

section.home-contact-sec:before {
    content: '';
    position: absolute;
    /*background-image: url(../images/banner-bottom.png);*/
    width: 100%;
    height: 8%;
    bottom: -31px;
    left: 0;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.h-contact-form input {
    width: 100%;
    height: 50px;
    border: 1px solid #d7d7d7;
    margin: 0 0 16px;
    padding: 0 20px;
    border-radius: 4px;
}

.h-contact-form textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 20px;
    resize: none;
    margin: 0 0 20px;
}

.h-contact-form textarea::placeholder {
    color: #111211;
    font-family: 'Queensila';
    font-size: 15px;
    font-weight: 600;
}

.h-contact-form input::placeholder {
    color: #111211;
    font-family: 'Queensila';
    font-size: 15px;
    font-weight: 600;

}

.h-contact-form button {
    border: 0;
}

.h-contact-form h3 {
    font-size: 127px;
    font-weight: 500;
    position: relative;
}

.h-contact-form h3:before {
    content: '';
    position: absolute;
    /*background-image: url(../images/line-point.png);*/
    width: 40%;
    height: 28%;
    top: 30%;
    right: -30%;
    background-repeat: no-repeat;
}


.home-contact-img img {
    width: 84%;
    position: relative;
}

.home-contact-img {
    text-align: center;
    position: relative;
}

.home-contact-img:before {
    /*content: '';*/
    position: absolute;
    background: none;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    top: -46px;
    left: -5px;
    box-shadow: -12px 6px 20px 0 #00000036;
}

/*Contact End*/

/*What We Start*/

section.what-we-sec {
    padding: 100px 0;
}

.wht-we-txt h2 {
    font-size: 120px;
    line-height: 130px;
    margin: 0;
}

.wht-we-txt ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #ebebeb;
    margin: 0 0 030px;
    padding: 0 9% 0 0;
    position: relative;
}

.wht-we-txt ul:before {
    position: absolute;
    content: '';
    /*background-image: url(../images/tree-banner.png);*/
    width: 34%;
    height: 100%;
    background-repeat: no-repeat;
    bottom: -120%;
    right: 0px;
    background-size: contain;
}

.wht-we-txt ul li:first-child {
    width: 60%;
}

.wht-we-txt ul li h3 {
    font-size: 120px;
    margin: 0;
    line-height: 130px;
    color: #5fa42c;
}

.wht-we-txt ul li p {
    margin: 0;
    text-align: right;
    width: 100%;
}

.wht-we-txt p {
    width: 65%;
}

.what-we-img {
    position: relative;
}

.what-we-img img {
    width: 80%;
    object-fit: cover;
}

.what-we-img:before {
    content: '';
    position: absolute;
    /*background-image: url(../images/half-circle.png);*/
    width: 58%;
    height: 130%;
    background-repeat: no-repeat;
    top: -50px;
    right: 0;
    background-size: cover;
}

/*What We End*/

/*Testimonial Start*/

.testimonial-txt h4 {
    font-size: 40px;
    color: #111211;
    line-height: 45px;
    margin: 0;
    font-family: 'Queensila';
}

.testimonial-txt h6 {
    font-size: 12px;
    color: #5fa42c;
    font-family: 'Montserrat';
}

.testimonial-txt p {
    width: 85%;
}

.testi-profile img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
}

section.testimonial-sec {
    padding: 0 0 100px;
}

.testimonail-extra2 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    text-align: right;
    margin: 0 -10px 0 auto;
}

.testi-extra3 img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    text-align: right;
    margin: 0 0px 0 auto;
}

.testimonail-extra2 {
    text-align: right;
    position: relative;
}

.testi-extra3 {
    text-align: right;
    position: relative;
}


.testi-slider {
    margin: 50px 0 0 0;
}

.testi-profile {
    position: relative;
}

.testi-profile:before {
    content: '';
    position: absolute;
    background-image: url(../images/green-circle.png);
    width: 58%;
    height: 130%;
    background-repeat: no-repeat;
    top: -35px;
    right: 0;
}

.testimonail-extra2:before {
    content: '';
    position: absolute;
    background-image: url(../images/testimonail-extra2-circle.png);
    width: 33%;
    height: 129%;
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    right: -30px;
}

.testi-extra3:before {
    content: '';
    position: absolute;
    background-image: url(../images/testi-extra3-circle.png);
    width: 13%;
    height: 130%;
    background-repeat: no-repeat;
    background-size: cover;
    top: -18px;
    right: 100px;
}

.testi-extra3:after {
    content: '';
    position: absolute;
    border: 1px solid #d9d9d9;
    width: 53%;
    height: 0px;
    top: 60px;
    left: 4px;
}


.testi-slider .slick-next:before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 #0000007d;
    opacity: 1 !important;
}

.testi-slider .slick-next {
    right: 15px;
}

.testi-slider .slick-prev:before {
    content: '\f0d9';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 #0000007d;
    opacity: 1 !important;
}

.testi-slider .slick-prev {
    left: -45px;
}

.testi-slider .slick-slide {
    margin: 45px 20px 45px;
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: 55px;
    left: 54%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
     text-align: center; 
}

.testi-slider .slick-dots li {
    position: relative;
    display: block;
    width: 20px;
    height: 34px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #5fa42c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #5fa42c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 0 0 -5px;
}

.testimonial-txt {
    position: relative;
}

.testimonial-txt:before {
    content: '';
    position: absolute;
    background-image: url(../images/comma-top.png);
    top: -40px;
    right: 0;
    width: 29%;
    height: 40%;
    background-repeat: no-repeat;
}

.testimonial-txt:after {
    content: '';
    position: absolute;
    background-image: url(../images/comma-top.png);
    width: 29%;
    bottom: -60px;
    left: -22px;
    height: 40%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
/*Testimonial End*/

/*Footer Start*/

footer {
    /* padding: 100px 0 0; */
    background: #161515;
    position: relative;
}

footer .container-fluid {
    padding: 0;
}

.f-logo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f-map iframe {
    width: 100%;
    height: 310px;
    /*filter: grayscale(1) invert(1) brightness(0.3);*/
}

.f-logo ul li a {
    font-size: 41px;
    font-family: 'Babillon';
    margin: 0 70px 0 0;
    background: radial-gradient(circle, rgba(145, 145, 145, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(145, 145, 145, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quick-link h5 {
    font-size: 18px;
    font-family: 'Montserrat';
    margin: 0 0 30px;
    color: #fff;
    text-transform: uppercase;
}

.quick-link {
    margin-top: 50px;
    padding-left: 30px;
}

.quick-link ul {
    display: flex;
    align-items: center;
    column-count: 2;
    flex-wrap: wrap;
}

.quick-link ul li {
    width: 36%;
    margin-bottom: 10px;
}

.quick-link ul li a {
    font-size: 14px;
    color: #6b6b6b;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 400;
    line-height: 35px;
}

.newsletter h3 {
    font-size: 40px;
    color: #fff;
    font-family: 'Queensila';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
    line-height: 50px;
}

.new-in input {
    width: 60%;
    height: 45px;
    border: 0;
    border-radius: 30px;
    padding: 0 30px;
    background: #343333;
    color: #ffffff;
}

.new-in input::placeholder {
    color: #868686;
}

.new-in {
    position: relative;
}

.new-in button {
    position: absolute;
    right: 28%;
    background: #5fa42c;
    border: 0;
    color: #fff !important;
    height: 45px;
    padding: 10px 20px;
    text-transform: uppercase;
}

.new-in button:hover {
    transform: scale(1.1);
}

.bottom-footer {
    border-top: 1px solid #606060;
    padding: 15px 9% 15px 3%;
    border-left: 1px solid #525252;
    margin: 0 0 0 7.7%;
}

.copy-right p {
    margin: 0;
}

.f-media-icon {
    display: grid;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 30px;
    bottom: 0;
    left: 40px;
    gap: 40px;
    align-content: center;
}

.f-media-icon a:hover {
    background: #5fa42c;
    transition: 0.5s ease-in-out;
    font-size: 20px;
}

.f-media-icon a {
    border: 1px solid #787878;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: 1s ease-in-out;
}

footer .col-lg-7.col-md-7 {
    border-left: 1px solid #525252;
    border-right: 1px solid #525252;
    height: 100%;
}


.newsletter {
    border-top: 1px solid #5a5a5a;
    padding-top: 24px;
}

.paypal {
    text-align: start;
}

.f-map {
    margin: -12px;
    margin-top: -11px;
    z-index: 0;
    position: relative;
    margin-bottom: -6px;
}

.f-logo li {
    position: relative;
    z-index: 1;
}

.copy-right {
    text-align: right;
}

.copy-right p {
    color: #fff;
    margin: 0;
}

/*Footer End*/

/*inner Banner Start*/

.inner-banner-sec {
    height: 80vh;
}

.inner-banner-sec .carousel-item {
    height: 80vh;
}

.inner-banner-sec .banner_img img {
    width: 70%;
}

.inner-banner-sec .banner_img {
    text-align: center;
}

.inner-banner-sec .banner_img:before {
    width: 73%;
    left: 90px;
    top: -13px;
}

.inner-banner-sec:before {
    background-size: cover !important;
}

.inner-about-sec:before {
    top: 115px !important;
}

/*inner Banner End*/

/*/Product STart*/

.inner-product-sec {
    padding: 100px 0 !important;
}

.inner-product-sec:before {
    display: none;
}
/*/Product STart*/

/* Account Page Start */

.signin_sec {
    padding: 100px 0;
    position: relative;
    margin: 30px 0;
    /* padding-top: 0; */
}

h2.sign_up_heading {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.input-icons i {
    position: absolute;
    font-size: 20px;
    z-index: 99;
    margin-top: 5px;
}

.input-icons {
    width: 100%;
}

.input-icons .icon {
    padding-top: 15px;
    padding-left: 12px;
    min-width: 40px;
}

.input-field {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 45px;
    margin-bottom: 30px;
    border: none;
    padding: 10px 50px;
    border-radius: 0;
    background-color: #ebebeb;
    height: 60px;
}

.input-field::placeholder {
    font-weight: 300;
}

.signup_form button {
    border: none;
    width: 100%;
}

.social_btn a i {
    border-right: 1px solid #fff;
    padding-right: 10px;
}

.social_btn a {
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    display: flex;
    gap: 20px;
}

.social_btn {
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social_btn a:first-child {
    background-color: #4267B2;
}

.social_btn a:last-child {
    background-color: #02abee;
}

.login {
    /* background-color: #d7d7d770; */
    padding: 0px 50px;
}

.login h3 {
    color: #000000;
    font-size: 36px;
    text-align: center;
    font-family: 'Queensila';
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.login_form input {
    background-color: #ebebeb;
    border-radius: 0;
}

.login_form .remeber {
    text-align: center;
    margin-bottom: 20px;
}

.login_form button {
    border: none;
    height: 50px;
}

.forgot_pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.login_form label,
.forgot_pass a {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.btn-1 {
    height: 60px;
    padding: 0 40px;
    background: #f00f8f;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bg-from-clr {
    /* background: #e9e9e96b; */
    padding-left: 20px;
}

.bg-from-clr .col-lg-5 {
    padding-right: 0;
}

.signup_form .btn-wrapper button {
    background: #008aff;
    font-size: 24px;
    border-radius: 50px;
    width: 100%;
    height: 60px;
    color: #fff;
}

section.signin_sec::after {
    position: absolute;
    content: "";
    background: url(../images/squares.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 220px;
    height: 328px;
    left: -2%;
    bottom: -15%;
    z-index: -5;
}

button.btn.theme_btn {
    background: #191919;
    color: #fff;
    border-radius: 50px;
    padding: 20px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat';
    justify-content: center;
}

.remeber input {
    width: 20px;
    height: 20px;
    color: #000;
}

.remeber {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

/* Account Page End */

/* Contact Page Start */

.contact-sec {
    position: relative;
}

.contact-box {
    background: #f0f0f0;
    padding: 40px;
}

.contact-text h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: #6e6e6e;
    font-family: 'Montserrat';
}

.contact-text h3 {
    font-size: 24px;
    color: #000;
    word-spacing: 0;
    line-height: 34px;
}

.cont-input input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 1px solid #d0d0d0;
    padding: 10px 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0px;
}

.cont-input input::placeholder {
    color: #000;
}

.cont-input textarea {
    width: 100%;
    background: transparent;
    padding: 10px 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    height: 100px;
    border: 1px solid #d0d0d0;
    resize: none;
}

.cont-input textarea::placeholder {
    color: #000;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -35px 0 0 -60px;
}

ul.contact-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

ul.contact-icons img {
    width: 60px;
    height: 50px;
    object-fit: contain;
}

.contact-form {
    margin-bottom: 50px;
}

ul.contact-icons.center-box {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

ul.contact-icons.center-box:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: -6%;
    top: 0;
    background: #959595;
}

ul.contact-icons.center-box:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: -1%;
    top: 0;
    background: #959595;
}

ul.contact-icons {
    padding: 30px 0;
}

.contact-map iframe {
    width: 100%;
    filter: invert(1);
}

.contact-map {
    margin-top: -15%;
    /*z-index: -1;*/
}

.contact-button button {
    border: 0;
}

ul.contact-icons p {
    margin: 0;
}
/* Contact Page End */

/*CART PAGE CSS*/

.shopping_cart {
    padding: 80px 0;
    position: relative;
}

section.shopping_cart:before {
    content: '';
    position: absolute;
    background-image: url(../images/tree-banner.png);
    width: 30%;
    height: 40%;
    background-repeat: no-repeat;
    bottom: 19%;
    left: -17%;
}


.shopping_cart_table h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Montserrat';
    padding-bottom: 10px;
}

.shopping_cart_table table thead {
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody .cart_box_product {
    display: flex;
    align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_img {
    width: 25%;
    background-color: #f2f2f2;
    padding: 25px 10px;
    margin-right: 10px;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Montserrat';
    color: #000;
    font-weight: 500;
    margin: 0;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    font-size: 15px;
    color: #b7b7b7;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.shopping_cart_table table tbody td select {
    height: 40px;
    padding-left: 10px;
    appearance: auto;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    border-radius: 0;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .t_price {
    font-size: 27px;
    font-family: 'Montserrat';
    font-weight: 400;
}

th.w-40 {
    width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: #000;
}

.cart_recipt {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    padding: 10px 30px;
    border: 1px solid #b8b8b8;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #151414;
    font-weight: 500;
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.recipt li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Montserrat';
    margin-bottom: 20px;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #b8b8b8;
}

.recipt li span {
    font-family: 'Montserrat';
    font-size: 16px;
    letter-spacing: 2px;
}

.payment_card {
    background-color: #63b526;
    padding: 50px 25px;
}

.payment_card h3 {
    font-size: 31px;
    font-family: 'Queensila';
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff;
}

.credit_paypal a {
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 15px;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}

.payment_card form label {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form select {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form input::placeholder {
    color: #fff;
}

.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: #000;
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}
.shopping_cart_table table tbody td .skin-2 .num-in {
    border-radius: 0;
    border: 1px solid #b8b8b8;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before, .skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Montserrat';
}

.skin-2 .num-in {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 150px;
    float: left;
    border: 1px solid #b7b7b7;
    border-radius: 25px;
    cursor: pointer;
}

.cart_product_img img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}
/*CART PAGE CSS END*/


/*CHECKOUT PAGE*/

.billing_form h3 {
    font-family: 'Queensila';
    font-size: 51px;
    color: #010101;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 500;
}

.billing_form label {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #7c7c7c;
    font-weight: 600;
}

.radiosss p {
    color: #000000;
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 45px;
    border: 1px solid #C4C4C4;
    margin-bottom: 20px;
    padding-left: 15px;
    font-family: 'Montserrat';
    background: transparent;
    border-radius: 50px;
    font-weight: 500;
}

.billing_form input::placeholder {
    color: #b0b0b0;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    font-family: 'Roboto', sans-serif;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #700ea3;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #C4C4C4;
    border-radius: 16px;
}

.cart_sidebar h3 {
    font-size: 24px;
    color: #000000;
    margin-top: 0px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: normal;
    font-family: 'Montserrat';
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat';
    font-size: 21px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    text-transform: uppercase;
}

.cart_sidebar h5 span {
    float: right;
    color: #000;
}

.cart_sidebar h4 {
    font-size: 23px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: normal;
    padding-top: 0;
    font-family: 'Montserrat';
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #08863c;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
    font-family: 'Roboto', sans-serif;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
    font-family: 'Montserrat-Ultral';
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    border-radius: 0;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #ff2e98;
    font-family: 'Montserrat-Ultral';
}

.checkout_btn:hover {
    /* color: white; */
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 500;
    color: #000;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #08863c;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page.all-section.all-side {
    padding: 100px 0 150px;
    position: relative;
    margin-bottom: -70px;
}

.checkout_page .img-1 {
    position: absolute;
    left: -13%;
    top: 50%;
    width: 340px;
}

.checkout_page .img-2 {
    position: absolute;
    right: -7%;
    top: 60%;
    width: 230px;
    transform: rotate(200deg);
}

.billing_form {
    border: none;
    padding: 0;
}

.radiosss p {
    color: #000000;
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 400;
}
/*Checkout End*/

/* Product Detail Page start */

.skin-2 .num-in {
    height: 40px;
    width: 150px;
    float: left;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
    font-family: 'Helvetica';
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Montserrat';
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.product-det-content h4 {
    font-size: 33px;
    line-height: 40px;
    font-family: 'Trajan';
    color: black;
    text-transform: capitalize;
}

.radio-input input {
    display: none;
}

.radio-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background-color: #fff;
    color: #000000;
    gap: 10px;
    overflow: hidden;
}

.radio-input label {
    width: 90px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 14px;
    border: 1px solid #000;
}

.selection {
    display: none;
    position: absolute;
    height: 100%;
    width: calc(var(--container_width) / 3);
    z-index: 0;
    left: 0;
    top: 0;
    transition: .15s ease;
}

.radio-input label:has(input:checked) {
    color: #000;
    background: linear-gradient(196deg, rgba(244, 110, 10, 1) 10%, rgba(248, 77, 3, 1) 50%, rgba(249, 64, 0, 1) 60%);
    border: 0;
}

.radio-input label:has(input:checked)~.selection {
    background-color: rgb(11 117 223);
    display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 0/3));
}

.radio-input label:nth-child(2):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 1/3));
}

.radio-input label:nth-child(3):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 2/3));
}

.product-det-box {
    padding: 30px;
    border: 1px solid #a9a9a9;
}

.product-det-box h3 {
    font-size: 23px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    line-height: 40px;
}

.product-det-box h3 span {
    font-family: 'Queensila';
    font-size: 50px;
    width: 100px;
}

.counter-det-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
}

.counter-det-box:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background: #a9a9a9;
}

.prod-det-buttons {
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #a9a9a9;
    position: relative;
    padding-right: 45px;
}

.btn2.cart-btn {
    font-size: 21px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.prod-det-buttons i {
    font-size: 30px;
    background: -webkit-linear-gradient(#f94000, #f56307);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.prod-det-buttons:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 20%;
    top: 0;
    background: #a9a9a9;
}

.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.rating:not(:checked)>label:before {
    content: '★';
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #e58e09;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.rating>input:checked~label {
    color: #ffa723;
}

ul.review-det {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 25px 0;
    border-bottom: 1px solid #000;
}

ul.review-det h4 {
    font-size: 20px;
    text-decoration: underline;
    color: #121212;
}

.product-det-imag {
    height: 100%;
    border: 1px solid #000;
}

.product-det-imag img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* Product Detail Page End */

/*Get A Quote Start*/

.get-a-quote-sec .product-tree {
    top: 20%;
}

.get-a-quote-sec {
    padding: 100px 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/ser-inner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.get-a-quote-sec:before {
    content: '';
    position: absolute;
    background-image: url(../images/tree-banner.png);
    width: 30%;
    height: 40%;
    background-repeat: no-repeat;
    bottom: 19%;
    left: -17%;
}

.get-a-quote-input input,
.get-a-quote-input select {
    width: 100% !important;
    height: 60px !important;
    border: 1px solid #ffffff !important;
    border-radius: 30px;
    padding: 0 20px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 19px;
    background: transparent;
}

.get-a-quote-input-iocn i {
    font-size: 20px;
    color: #ffffff;
}

.get-a-quote-input-iocn {
    position: absolute;
    right: 25px;
}

.get-a-quote-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.paga-link ul li:last-child a {
    color: #cb1a22;
}

.get-a-quote-input input::placeholder {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 19px;
}

.get-a-quote-textarea textarea {
    width: 100%;
    height: 230px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 20px 20px;
    resize: none;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 19px;
    background: transparent;
    margin: 0 0 20px;
}

.get-a-quote-input select option {
    background: #5fa42c;
}

.get-a-quote-button button {
    width: 17%;
    font-size: 20px;
    padding: 18px 40px;
    border: 0;
    background: #ed1b24;
    border-radius: 0;
    color: #fff;
}

.get-a-quote-textarea textarea::placeholder {
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-size: 19px;
}

.get-a-quote-textarea {
    position: relative;
}

.get-a-quote-textarea-icon {
    position: absolute;
}

.get-a-quote-textarea-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.get-a-quote-textarea-icon i {
    font-size: 20px;
    color: #ffffff;
}

.get-a-quote-button {
    margin-top: 50px;
    text-align: center;
}

.get-a-quote-button a {
    width: 13%;
    margin: 0 auto;
}

.inner-f {
    margin: 0;
    padding: 0;
}


.get-a-quote-sec form {
    background: #5fa42c;
    padding: 40px;
    border-radius: 20px;
}

.estimate-btn {
    text-align: center;
}

.estimate-btn button {
    border: 1px solid #fff;
}

/*Get A Quote End*/

/*Event Start*/

section.event-sec {
    padding: 100px 0;
}

.event-txt h4 {
    font-size: 26px;
    font-family: 'Montserrat';
    color: #1f1f1f;
    padding-bottom: 40px;
    position: relative;
}

.event-txt h4:before {
    content: '';
    position: absolute;
    background-image: url(../images/line-point.png);
    width: 100%;
    height: 41%;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    right: 0;
}

.event-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.event-list ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-img img {
    height: 266px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-list ul li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #63b526;
    width: 50px;
    height: 60px;
    color: #fff;
    font-size: 26px;
    border-radius: 30px 30px 5px 5px;
}

.event-list ul li h5 {
    font-size: 16px;
    color: #1f1f1f;
    font-family: 'Montserrat';
    font-weight: 600;
    margin: 0;
    line-height: 22px;
}

.event-list ul li h5 span {
    display: block;
    font-size: 13px;
    color: #1f1f1f;
}

.event-main {
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.row.event-main:before {
    content: '';
    position: absolute;
    border: 1px solid #bdbdbd;
    width: 84%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 20px;
    background: #fdfdfd;
    z-index: -1;
    box-shadow: 0 0 32px 0 #fff;
}
 
 .event-number h5 {
  font-size: 23px;
  font-family: "Trajan Pro 3";
  color: rgb(99, 181, 38);
  line-height: 1.13;
  text-align: center;
  -moz-transform: matrix( 3.39923824530649,0,0,3.37303757957919,0,0);
  -webkit-transform: matrix( 3.39923824530649,0,0,3.37303757957919,0,0);
  -ms-transform: matrix( 3.39923824530649,0,0,3.37303757957919,0,0);
  position: absolute;
  top: -11px;
  z-index: -2;
  right: 80px;
  margin: 0;
}

.event-txt {
    padding: 40px 0px 40px 20px;
    position: relative;
}

.event-main2:before {
    left: 0 !important;
    right: inherit;
}

.event-main2 .event-txt h5 {
    right: inherit;
    left: 70px;
}

.event-main2 {
    margin-top: 90px;
}

.event-detail-sec {
    position: relative;
}

section.event-sec .event-number h5 {
    top: -20px;
    right: 190px;
    background: linear-gradient(177deg,  rgba(99,181,38,1) 14%, rgba(255,255,255,1) 52%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

/*Event End*/