@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* global css */

/* colors */
:root {
    --sky: #26527f;
    --cream: #95c546; 
    --cream2: #0f7081; 
    --white: #ffffff; 
    --black: #000000;
    --grey: #acacac; 
}
html {
  scroll-behavior: smooth;
}
body{
    font-family: "Open Sans", sans-serif;
}

/* colors */
.txt-cream{
    color: var(--cream);
}
.txt-sky{
    color: var(--sky);
}
.bg-sky{
    background-color: var(--sky);
}
.bg-cream{
    background-color: var(--cream);
}

/* heading and para */
h2{
    font-size: 35px;
    font-weight: 300;
    color: var(--black);
    line-height: 40px;
}
h2 span{
    font-size: 35px;
    font-weight: 900 !important;
    color: var(--black);
    line-height: 40px;
    text-transform: uppercase;
}
p{
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    line-height: 22px;
}

/* buttons */
.cta-btns {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none !important;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 400;
    padding: 12px 44px;
}
.cta-btns:hover {
    background-color: var(--sky);
    color: var(--white);
}

.cta-btns-black {
    background-color: var(--black);
    color: var(--white);
    text-decoration: none !important;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 400;
    padding: 12px 44px;
}
.cta-btns-black:hover {
    background-color: var(--sky);
    color: var(--white);
}

/* accordions */
.accordions .card{
    background-color: transparent;
    border: 0;
}
.accordions .card-header{
    padding: 0;
    border-bottom: 0;
}
.accordions .card-body{
    font-size: 14px;
    padding: 20px 50px 40px;
}
.accordions .card-header a{
    background-color: var(--white);
    border-bottom: 0;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding: 12px 30px 12px 50px;
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.accordions .card-header a.collapsed::before{
    content: "";
    position: absolute;
    background-color: var(--black);
    border-radius: 100px;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.accordions .card-header a:not(.collapsed)::before{
    content: "";
    position: absolute;
    background-color: var(--white);
    border-radius: 100px;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.accordions .card-header a.collapsed::after{
    content: "\F231";
    font-size: 16px;
    font-family: 'bootstrap-icons';
    line-height: 0;
    transition: 0.5s;
    color: var(--black);
    right: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.accordions .card-header a:not(.collapsed)::after{
    content: "\F229";
    font-family: 'bootstrap-icons';
    font-size: 16px;
    line-height: 0;
    transition: 0.5s;
    color: var(--white);
    right: 12px;
    position: absolute;
    top: 50%;
}
.accordions .card-header a:not(.collapsed){
    background-color: var(--cream2);
    border-radius: 15px 15px 0 0;
    color: var(--white);
}
.accordions .show{
    background-color: var(--cream2);
    border-radius: 0 0 15px 15px;
    transition: 0.5s;
    color: var(--white);
}

/* produt-card */
.produt-card{
    /* -webkit-box-shadow: 22px 23px 34px 3px rgba(0,0,0,0.33); 
    box-shadow: 22px 23px 34px 3px rgba(0,0,0,0.33); */
    border-radius: 20px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #bbb;
    padding: 30px;
}
.produt-card{
    margin-bottom: 35px;
}
.produt-card:hover{
    margin-bottom: 0;
}
.produt-card:hover{
    background-image: url('../images/spectrum-hemp-shot-bg.jpg'); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}
/*.produt-card .img-rds{
    width: 50%;
    margin: auto;
}*/
.produt-card .img-rds {
	width: 114px;
	margin: auto;
	height: 234px;
	object-fit: contain;
}
.produt-card .card-body{
    padding: 20px 0 0;
}
.produt-card .cards-heading h3{
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    min-height: 50px;
}
.produt-card .cards-heading p{
    color: var(--grey1);
    margin-top: 15px;
    font-size: 14px;
}
.produt-card:hover .cards-heading h3{
    color: var(--white);
}
.produt-card:hover .cards-heading p{
    color: var(--white);
}
.produt-card .cards-heading .btns2{
    padding: 5px 0;
    display: none;
    transition: 0.5s;
}
.produt-card:hover .btns2{
    display: block;
    transition: 0.5s;
}
.produt-card .cards-heading .btns2 a{
    background-color: var(--white);
    color: var(--black);
    margin-top: 0;
}
.produt-card .cards-heading .btns2 a:hover{
    background-color: var(--black);
    color: var(--white);
}


/* top menue */
.top-menue .icons a{
    color: var(--white);
    font-size: 16px;
    margin-right: 7px;
}
.top-menue .icons a:hover{
    color: var(--cream);
}
.top-menue p{
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
}
.top-menue .tel i{
    color: var(--white);
    font-size: 14px;
    margin-right: 7px;
}
.top-menue .tel a{
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
}
.top-menue .tel a:hover{
    color: var(--cream);
}

/* main menue */
.headers{
    position: absolute;
    width: 100%;
    z-index: 9;
}
.headers .navs .container{
    background-color: #ffffffa1;
    border-radius: 18px;
    padding: 10px 25px;
}
.navs .logos img{
    width: 133px;
}
.navs ul{
    margin-right: 20px;
}
.navs ul li a{
    color: var(--black);
    font-size: 12px;
    position: relative;
    font-weight: 500;
    padding: 0 25px 0 0 !important;
}
.navs ul li a:hover{
    color: var(--sky);
}
.navs .icons-rigt .icons{
    background-color: var(--black);
    border-radius: 50px;
    font-size: 12px;
    color: var(--white);
    width: 23px;
    height: 23px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
}
.navs .icons-rigt .icons:hover{
    background-color: var(--sky);
}
.navs .icons-rigt .btns .btn{
    background-color: var(--black);
    border-radius: 15px;
    font-size: 12px;
    color: var(--white);
    padding: 7px 25px;
}
.navs .icons-rigt .btns .btn:hover{
    background-color: var(--sky);
    border-color: var(--sky);
}

/* navs scroll top */
.navs-top{
    position: fixed;
    background-color:var(--sky);
    width: 100%;
    top: 0;
    z-index: 99999;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    /* padding-right: 5px !important; */
    animation: anim 0.5s;
}
@keyframes anim{
    from {top: -200px;}
    to {top: 0px;}
}

/* banners */
.banners .banner-content{
    padding: 200px 0 140px;
}
.banners .banner-content h1{
    font-size: 200px;
    line-height: 170px;
    color: var(--white);
    letter-spacing: -22px;
    font-weight: 900;
    text-transform:uppercase;
}
.banners .banner-content .sub-heading{
    font-size: 32px;
    color: var(--white);
    font-weight: 200;
    margin-bottom: 10px;
}
.banners .banner-content .sub-heading b{
    color: var(--white);
    font-weight: 700;
    text-transform:uppercase;
}
.banners .btns{
    margin-top: 50px;
}

/* Our-Wholesale-sec */
.Our-Wholesale-sec {
    background-image: url("../images/wholesale-can.png");
    background-position: left top;
    background-size: 28%;
    background-repeat: no-repeat;
    padding: 50px 0 0;
}
.Our-Wholesale-sec .cards{
    border-radius: 15PX;
    padding: 25px;
    display: flex;
}
.Our-Wholesale-sec .cards .transforms{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: 100%;
    margin-right: -63px;
    align-self: center;
}
.Our-Wholesale-sec .cards .text-Request{
    font-size: 40px;
    font-weight: 600;
    line-height: 0;
    color: var(--black);
    padding-bottom: 20px;
    margin-top: 30px;
}
.Our-Wholesale-sec .cards h2{
    font-size: 72px;
    font-weight: 900;
    color: var(--black);
    text-transform: uppercase;
    line-height: 0;
}
.Our-Wholesale-sec .cards form{
    align-self: center;
}
.Our-Wholesale-sec .cards form input{
    border-radius: 12px;
    padding: 22px 15px;
    border-color: #8f8d8d;
}
.Our-Wholesale-sec .cards form input::placeholder{
    font-size: 14px !important;
    color: var(--black) !important;
}
.Our-Wholesale-sec .cards form textarea{
    border-radius: 12px;
    padding: 22px 15px;
    border-color: #8f8d8d;
}
.Our-Wholesale-sec .cards form textarea::placeholder{
    font-size: 14px !important;
    color: var(--black) !important;
}
.Our-Wholesale-sec .cards .btns{
    text-align: center;
}
.Our-Wholesale-sec .left-cols{
    text-align: right;
}
.Our-Wholesale-sec .left-cols h2 {
    font-size: 45px;
    line-height: 53px;
    font-weight: 400;
    color: var(--black);    
}
.Our-Wholesale-sec .left-cols h2 span {
    font-size: 70px;
    line-height: 50px;
    font-weight: 900;
    color: var(--black);    
    text-transform: uppercase;
    display: block;
}
.Our-Wholesale-sec .left-cols .text-question {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-top: 15px;
}
.Our-Wholesale-sec .left-cols p {
    margin-top: 20px;
    font-size: 14px;
}
.Our-Wholesale-sec .left-cols .social-link a {
    color: var(--black);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}
.Our-Wholesale-sec .left-cols .social-link i {
    color: var(--black);
    font-size: 14px;
}
.Our-Wholesale-sec .left-cols .btns .btn {
    background-color: var(--black);
    border-radius: 14px;
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
    padding: 12px 45px 12px 55px;
    margin-top: 10px;
}
.Our-Wholesale-sec .cards{
    background-color: transparent;
}
.Our-Wholesale-sec .cards form input {
    background-color: transparent;
}
.call-back-sec .cards form textarea {
    background-color: transparent;
}
.Our-Wholesale-sec .cards .btns .btn {
    background-color: var(--black);
    border-radius: 14px;
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
    padding: 8px 55px;
    margin-top: 5px;
}

/* Habit-Fans-sec */
.Habit-Fans-sec{
    margin: 50px 0 0 0;
}

/* Habit-Wholesale-sec */
.Habit-Wholesale-sec {
    background-image: linear-gradient(to top, #fff, #fff, #9dd5df, #62cee1);
    padding: 20px 0 45px;
    margin-top: 50px;
}
.Habit-Wholesale-sec .right-cards h2{
    font-size: 35px;
    font-weight: 900;
    color: var(--black);
    line-height: 40px;
}
.Habit-Wholesale-sec .right-cards p{
    font-size: 14px;
    color: var(--black);
    font-weight: 400;
    margin-top: 15px;
}
.Habit-Wholesale-sec .right-cards .btns{
    margin-top: 35px;
}
.Habit-Wholesale-sec .cards{
    background-color: var(--white);
    border-radius: 20px;
    padding: 10px 20px;
}
.Habit-Wholesale-sec .card-header span{
    align-self: center;
}
.Habit-Wholesale-sec .card-header i{
    color: var(--black);
    font-size: 18px;
}
.Habit-Wholesale-sec .right-cards .btns .btn {
    background-color: var(--white);
    border-radius: 14px;
    font-size: 14px;
    color: var(--black);
    font-weight: 300;
    padding: 8px 45px;
    margin-top: 25px;
}

/* footer */
.footers{
    background-color: var(--cream);
    padding: 40px 0 0;
}
footer .logos{
    width: 90%;
}
footer h2{
    font-size: 60px;
    line-height: 60px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 900;
}
footer .sub-text{
    font-size: 40px;
    color: var(--black);
    font-weight: 500;
}
footer p{
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
}
footer .left-cols{
    border-left: 1px solid var(--white);
    padding-left: 60px;
}
footer .btm-footer{
    border-top: 1px solid var(--white);
}

/* scroll top */
.scroll-top{
    position: fixed;
    bottom: 25px;
    right: 5px;
    background-color: var(--black);
    border-radius: 100px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    z-index: 99;
}

@media (min-width: 1400px) {

}
@media screen and (min-width: 1199px){
    .container {
        max-width: 1200px;
    }
}
@media screen and (max-width: 1199px){

}

@media screen and (max-width: 991px){
    .banners nav ul li a {
        padding: 8px 0px !important;
    }
    footer .left-cols {
        border-left: 0 solid var(--white);
        padding-left: 15px;
    }
}

@media screen and (max-width: 768px){
    .banners .banner-content h1 {
        font-size: 95px;
        line-height: 100px;
        letter-spacing: -6px;
    }
    .Our-Wholesale-sec {
        padding: 60px 0 30px;
    }
    .navs ul li a {
        padding: 10px 25px 0 0 !important;
    }
    /* Override Bootstrap collapse styles */
    .navs .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -1500px; /* Hidden off-screen */
        width: 100%;
        height: 100vh !important;
        background: var(--sky) !important;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 999 !important;
        padding-top: 10px;
    }

    /* Show when active */
    .navs .navbar-collapse.show {
        left: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
    .navs ul {
        margin-top: 20px;
    }

    /* Optional: cover the screen when menu is open */
    .navbar-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        transition: all 0.3s ease;
    }
    .navs ul li a {
        color: var(--white);
        font-size: 20px;
    }
    .navs ul li a:hover {
        color: var(--cream);
    }
    .navs .close-btns{
        font-size: 40px;
    }
}

@media screen and (max-width: 420px){

}

@media screen and (max-width: 575px){
    .Team-Driving-sec .card {
        padding: 15px 10px;
    }
    .banners .banner-content {
        padding: 120px 0 70px;
        text-align: center;
    }
    .banners .banner-content h1 {
        font-size: 65px;
        line-height: 55px;
        letter-spacing: -6px;
    }
    .banners .btns {
        margin-top: 20px;
    }
    .Habit-Wholesale-sec .right-cards {
        text-align: center;
    }
    .Our-Wholesale-sec .left-cols {
        text-align: center;
    }
    .Our-Wholesale-sec .left-cols h2 span {
        font-size: 50px;
        line-height: 35px;
    }
    .Our-Wholesale-sec {
        padding: 0px 0 30px;
    }
    .Habit-Wholesale-sec .right-cards h2 {
        font-weight: 700;
    }
    .Our-Wholesale-sec .cards {
        flex-direction: column-reverse;
    }
    .Our-Wholesale-sec .cards .transforms {
        writing-mode: initial;
        margin-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .Our-Wholesale-sec .cards h2 {
        font-size: 55px;
        line-height: 45px;
    }
    .Our-Wholesale-sec .cards .text-Request {
        margin-top: 0;
    }
    .produt-card {
        padding: 15px 10px;
    }
    .produt-card .cards-heading .btns2 a {
        padding: 12px 25px;
    }
    /* .produt-card .cards-heading h3 {
        min-height: 74px;
    } */
     .produt-card .cards-heading .btns2 {
        display: block;
    }
    .produt-card .cards-heading .btns2 a {
        background-color: var(--black);
        color: var(--white);
        margin-top: 0;
    }
    .produt-card .cards-heading .btns2:hover a {
        background-color: var(--white);
        color: var(--black);
        margin-top: 0;
    }
    .produt-card .img-rds {
        width: 90px;
        margin: auto;
        height: 190px;
        object-fit: contain;
    }
}
