/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'azo-sans-reg';
    color: #fff;
    overflow-x: hidden;
    background: black;
}

a {
    text-decoration: none;
    color: #fff;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #fff;
}

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;
}

p {
    font-weight: 500;
    line-height: 1.5;
}


/***** Font Files *****/

@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
}
@font-face {
    font-family: 'azo-sans-reg';
    src: url(../fonts/AzoSans-Regular.ttf);
}
@font-face {
    font-family: 'azo-sans-light';
    src: url(../fonts/AzoSans-Light.ttf);
}
@font-face {
    font-family: 'azo-sans-med';
    src: url(../fonts/AzoSans-Medium.ttf);
}
@font-face {
    font-family: 'azo-sans-thin';
    src: url(../fonts/AzoSans-Thin.ttf);
}
@font-face {
    font-family: 'azo-sans-bold';
    src: url(../fonts/AzoSans-Bold.ttf);
}
@font-face {
    font-family: 'azo-sans-black';
    src: url(../fonts/AzoSans-Black.ttf);
}

@font-face {
    font-family: 'azo-sans-uber';
    src: url(../fonts/Azo-Sans-Uber.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 10px 15px;
    border: unset;
    border-radius: 0;
    color: #000;
    text-transform: uppercase;
    z-index: 1;
    background: #fff;
    position: relative;
    font-size: 20px;
    transition: all 250ms;
    overflow: hidden;
    font-family: 'azo-sans-bold';
    /* line-height: 1; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0;
    background-color: #000;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #ffffff;
    border-bottom: 1px solid;
}

.theme_btn:hover::before {
    width: 100%;
}

.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-family: 'azo-sans-reg';
    font-size: 80px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    margin: 0 0 17px;
}

h2 {
    font-family: 'azo-sans-reg';
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'azo-sans-reg';
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    margin: 0 0 28px;
}

h4 {
    font-family: 'azo-sans-reg';
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'azo-sans-reg';
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'azo-sans-reg';
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 22px;
}

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 */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    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: 13px;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.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 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 */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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 [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: 0;
    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;
    background: rgba(0, 0, 0, 0.1);
}

.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 css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */



.welcome-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    margin: 0 auto;
}

.seed-img img {
    /* margin: 25px 70px 0 0; */
    position: relative;
    left: -40px;
}

.welcome-page .logo {
    margin: 10px 0 0;
}
.seed-img {
    position: relative;
    display: flex;
    align-items: center;
}

.welcome-box {
    position: absolute;
    background: #7171716e;
    padding: 30px 45px;
    text-align: center;
    margin-bottom: 150px;
}
.welcome-box h1 {
    font-size: 75px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.welcome-box p {
    font-size: 27px;
/*     font-family: 'azo-sans-med'; */
    margin-bottom: 30px;
}
.age-btns {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
}

.age-btns a {
    border: 2px solid #fff;
    font-size: 16px;
    width: 150px;
    padding: 5px 0;
}
.welcome-box p:last-child {
    margin: 0;
}



/* Header */
ul.left-menu {
    display: flex;
    gap: 60px;
    margin: 0;
}

.container-fluid {
    width: 90%;
}
ul.right-menu {
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: end;
    gap: 65px;
}
ul.right-menu input {
    width: 220px;
    border: 0;
    padding: 5px 10px;
}

ul.right-menu button {
    border: 0;
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 22px;
    margin-left: 5px;
}

a.cart {
    font-size: 30px;
}
header {
    padding: 10px 0;
}
ul.left-menu li a::before, ul.right-menu li a::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 0px;
    height: 1px;
    bottom: -4px;
    transition: 0.5s ease-in-out;
}
ul.left-menu li a:hover:before, ul.right-menu li a:hover:before, ul.left-menu li a.active:before, ul.right-menu li a.active:before {
    width: 80px;
}
ul.left-menu li a, ul.right-menu li a {
    position: relative;
}
/* Header */




/* Banner */
img.banner-img {
    width: 85%;
}
section.banner {
    position: relative;
    display: flex;
    align-items: center;
}
.banner-content {
    position: absolute;
    left: 0;
    right: 0;
}
/* Banner */



.plant-txt h3 {
    /* font-family: 'azo-san-uber'; */
    font-size: 28px;
    margin: 0 0 5px;
    font-weight: 400;
    margin-right: 18px;
}

.plant-txt h4 {
    font-size: 18px;
}

.plant-txt h4 span {
    display: block;
    line-height: 1.4;
}
a.cart-btn {
    background: #fff;
    color: #000;
    font-family: 'azo-sans-black';
    text-transform: uppercase;
    padding: 5px 5px;
    border: 1px solid #fff;
    font-size: 17px;
}

a.cart-btn:hover {
    background: transparent;
    color: #fff;
}
.plant-txt {
    padding: 15px 0px;
}

.sec-head h2 {
    font-size: 28px;
    margin: 0 0 210px;
    border-bottom: 1px solid;
    display: inline-block;
}
.sec-head {
    text-align: center;
}

.sec-head a {
    font-size: 28px;
    display: inline-block;
}

.sec-head a:hover {
    border-bottom: 1px solid;
}
section.plant-sec {
    /* margin: 30px 0; */
}
.plant-wrap {
    padding: 0 20px;
}






.big-plant img {
    width: 85%;
}
.sec-txt {
    text-align: end;
}



section.plant-sec.clones.home-page {
    margin: 0 0 100px;
}




footer.footer-sec {
    padding: 50px 0;
}
footer.footer-sec h3 {
    font-size: 24px;
    margin: 0 0 8px;
    font-weight: 400;
}

.email a {
    font-size: 20px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 130px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    font-size: 45px;
}

form.hf-form.hf-form-65 .hf-fields-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.newsletter {
    float: right;
}

.newsletter form input {
    width: 200px;
    border: none;
    padding: 5px 10px;
}

.newsletter form button {
    background: transparent;
    border: 1px solid #fff;
    padding: 4px 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    transition: 0.5s ease-in-out;
}





.abt-txt h2 {
    font-size: 80px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 3px #fff;
    -webkit-text-fill-color: #000;
}

.abt-txt p {
    font-size: 25px;
    margin: 0 0 35px;
    /* font-family: 'azo-sans-med'; */
}
.abt-sec {
    background: url(../images/abt-plant.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 750px;
    display: flex;
    align-items: center;
}
.abt-txt p:nth-child(2) {
    width: calc(100% + 15%);
}

.abt-txt p:nth-child(3) {
    width: 85%;
}




section.products.seeds-products {
    background: url(../images/seed-bg.png);
    background-size: cover;
}
.product-head {
    height: 405px;
    display: flex;
    align-items: end;
}
.filter-box .accordion-item {
    background: transparent;
}

.filter-box .accordion-button {
    background-color: transparent;
    color: #fff;
    padding: 10px 0px 10px 30px;
    font-size: 20px;
}
.filter-box .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    box-shadow: unset;
}

.filter-box .accordion-button:focus {
    border: 0;
    box-shadow: unset;
}
.filter-box .accordion-button::after {
    position: absolute;
    left: 0;
    background-image: unset;
    content: "\f067";
    font-family: 'Font Awesome 5 Pro';
    font-size: 20px;
    top: 10px;
}

.filter-box .accordion-button:not(.collapsed)::after {
    background-image: unset;
    content: "\f068";
}
.filter-box .accordion-body {
    padding: 0;
    padding-left: 35px;
}
.filter-box .accordion-body a {
    display: block;
    font-size: 20px;
    padding: 5px 0;
}
.filter-box .accordion-body a.active {
    color: #818181;
}
.filter-box {
    background: #000;
    padding: 20px 15px;
}
.products-part {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}
.products-part .plant-wrap {
    margin: 0 0 35px;
}
.result-txt {
    float: right;
    margin: 35px 0 0;
}
.product-head h1 {margin: 0 0 45px;}
.all-products {
    padding: 0 0 50px;
}




section.products.clones-products {
    background: url(../images/clone-bg.png);
    background-size: cover;
}
section.faq-sec {
    background: url(../images/faq-bg.png);
    background-size: cover;
}





.search-faq h1 {
    margin: 0 0 35px;
}

.search-faq form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 70px;
}

.search-faq form input {
    border: 0;
    padding: 10px 20px;
    width: 50%;
}

.search-faq form button {
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 35px;
}

.faq-part .accordion-button {
    font-size: 35px;
    color: #fff;
    background: transparent;
    border: 0;
    padding: 25px 30px;
    font-family: 'azo-sans-light';
}

.faq-part .accordion-button:not(.collapsed) {
    color: #fff;
    background: transparent;
    border: 0;
}

.faq-part .accordion-item {
    border-radius: 0 !important;
    border: 1px solid #fff !important;
    background: #ffffff3b;
    /* box-shadow: 0 8px 32px 0 #adb5bd; */
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 4px );
}

.faq-part .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
}
.faq-part {
    padding: 25px 0 70px;
}




.detail-sml-slider {
    margin-top: 20px;
}
section.clone-detail-sec {
    background: url(../images/clone-bg2.png);
    background-size: cover;
}
section.clone-detail-sec .product-head {
    height: 455px;
}
.detail-part {
    background: #000;
    padding: 40px 40px;
    position: relative;
}
.detail-sml-slider .slick-slide {
    opacity: 1;
}
.detail-txt h2 {
    font-size: 60px;
    margin: 0 0 15px;
}

.detail-txt h3 {
    font-size: 30px;
    font-family: 'azo-sans-light';
}

.detail-txt h3 span {
    display: block;
}

.detail-txt .cart-btn {
    font-size: 22px;
}
.detail-sec {
    padding: 50px 0 150px;
}
a.back-btn {
    position: absolute;
    right: 40px;
    font-size: 22px;
}


.seed-img img {
    animation: rotate 5s infinite linear;
    transform: rotateY(270deg);
}

@keyframes rotate {
    0% {
        transform: rotateX(0deg);
        
    }
    50% {
        transform: rotateX(360deg);
        
    }
    /* 66.6% {
        transform: rotateX(-360deg);
    }*/
    100% {
        transform: rotateX(0deg);
        
    } 
}
.plant-img {
    overflow: hidden;
}

.plant-img:hover img {
    transform: scale(1.2);
}

.plant-img img {
    transition: 0.5s ease-in-out;
}

.social-links a:hover {
    transform: translate(0px, -10px);
}

.newsletter form button:hover {
    background: #ffffff;
    color: #000;
}
.age-btns a:hover {
    background: #fff;
    color: #000;
}

html .ftr-privacy {font-size: 16px;width: 100%;}
html .right-privacy {left: 0;}





