/* Common Style starts */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Regular.eot');
    src: local('Gilroy Regular'), local('Gilroy-Regular'),
        url('../fonts/gilroy-full/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Regular.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url('../fonts/gilroy-full/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Medium.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Semibold.eot');
    src: local('Gilroy Semibold'), local('Gilroy-Semibold'),
        url('../fonts/gilroy-full/Gilroy-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Semibold.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Semibold.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-full/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../fonts/gilroy-full/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/gilroy-full/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/gilroy-full/Gilroy-Bold.woff') format('woff'),
        url('../fonts/gilroy-full/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #6DA76E;
    --light-green: #E1F3EF;
    --dark-green: #244538;

    --heading-color: #0B0C0D;
    --text-color: #28343A;

    --muted-color-200: #F0F3F8;
    --muted-color-300: #E6EBF4;
    --muted-color-400: #9999B5;

    --muted-text: #8296AD;
    --black-color: #000000;
    --white-color: #FFFFFF;
}

.dark-green {
    background-color: #244538;
}

.light-green {
    background-color: #E1F3EF;
}

body {
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
    color: var(--text-color);
}

:is(.sections-wrapper) :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
    line-height: normal;
    color: inherit;
    font-family: 'Gilroy' !important;
}

h1,
.h1 {
    font-size: clamp(2.25rem, 0.2934rem + 4.0816vw, 4.375rem);
}

h2,
.h2 {
    font-size: clamp(2.125rem, 1.7797rem + 0.7203vw, 2.5rem);
}

h3,
.h3 {
    font-size: clamp(1.625rem, 1.3948rem + 0.4802vw, 1.875rem);
}

h4,
.h4 {
    font-size: clamp(1.375rem, 1.1448rem + 0.4802vw, 1.625rem);
}

h5,
.h5 {
    font-size: clamp(1.125rem, 0.8948rem + 0.4802vw, 1.375rem);
}

h6,
.h6 {
    font-size: clamp(1rem, 0.8849rem + 0.2401vw, 1.125rem);
}

a {
    text-decoration: none;
}

/* p {
    line-height: clamp(1.625rem, 1.5536rem + 0.3571vw, 1.875rem);
} */

.text-xl {
    font-size: clamp(2.125rem, -1.9421rem + 11.3171vw, 9.375rem);
}

.text-lg {
    font-size: clamp(2.125rem, 1.125rem + 5vw, 5.625rem);
}

a,
.text-md {
    font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
}

.text-sm {
    font-size: 0.875rem;
}

.w-bold {
    font-weight: 700 !important;
}

.w-semibold {
    font-weight: 600 !important;
}

.w-medium {
    font-weight: 500 !important;
}

.w-normal {
    font-weight: 400 !important;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
        width: 100%;
    }
}

@media (max-width: 767px) {

    .spacer-y {
        padding-block: 60px !important;
    }
}

.spacer-y {
    padding-block: 100px;
}

.spacer-70 {
    padding-block: 70px;
}

.spacer-y-sm {
    padding-block: 88px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-30 {
    margin-bottom: 30px;
}

.dark-bg {
    color: var(--white-color);
    background-color: var(--secondary-color-600);
}

.muted-bg {
    background-color: var(--secondary-color-25);
}

.primary-text {
    color: var(--primary-color) !important;
}

.circle-icon {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 2px solid currentColor;
}

.button {
    padding: 18px 26px;
    font-weight: 400;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
    border-radius: 0px;
    font-size: 18px;
    gap: 10px;
}

.z-index-3 {
    z-index: 3;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--primary-color) !important;
}

.btn-dark {
    background-color: var(--secondary-color-500) !important;
}

/* .button-primary:hover path {
    fill: currentColor;
} */

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: var(--black-color) !important;
}

.btn-dark:hover {
    background-color: var(--primary-color-600) !important;
}

.button-black:hover path {
    fill: currentColor;
}

.button-black.outline {
    color: var(--black-color);
    background-color: transparent;
    border: 1px solid var(--black-color);
}

.button-black.outline:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.counter-text.plus::after {
    content: '+';
}

.counter-text.plus.k::after {
    content: 'K+';
}

.zindex-up {
    position: relative;
    z-index: 2;
}

.dark-blue {
    background-color: var(--secondary-color-500);
}

.font-22 {
    font-size: 22px;
}
@media (min-width: 992px) {
    h1, .h1 {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 2.25rem;
    }
    h3, .h3 {
        font-size: 1.875rem;
    }
    h4, .h4 {
        font-size: 1.5rem;
    }
    h5, .h5 {
        font-size: 1.125rem;
    }
    h6, .h6, .text-md, a {
        font-size: 1rem;
    }
    body {
        font-size: 1.125rem;
    }
}
@media (min-width: 1200px) {
    h1, .h1 {
        font-size: calc(2.25rem + 0.833vw);
    }
    h2, .h2 {
        font-size: calc(1.875rem + 0.417vw);
    }
    h3, .h3 {
        font-size: calc(1.5rem + 0.417vw);
    }
    h4, .h4 {
        font-size: calc(1.25rem + 0.235vw);
    }
    h5, .h5 {
        font-size: calc(1.125rem + 0.235vw);
    }
    h6, .h6, .text-md, a {
        font-size: calc(0.875rem + 0.139vw);
    }
    body {
        font-size: calc(1rem + 0.139vw);
    }
}
@media (min-width: 1700px) {
    h1, .h1 {
        font-size: calc(2.25rem + 1.25vw);
    }
    h2, .h2 {
        font-size: calc(1.875rem + 0.938vw);
    }
    h3, .h3 {
        font-size: calc(1.5rem + 0.625vw);
    }
    h4, .h4 {
        font-size: calc(1.25rem + 0.521vw);
    }
    h5, .h5 {
        font-size: calc(1.125rem + 0.313vw);
    }
    h6, .h6, .text-md, a {
        font-size: calc(0.875rem + 0.208vw);
    }
    body {
        font-size: calc(1rem + 0.208vw);
    }
}
@media (max-width: 991px) {
    h1, .h1 {
        font-size: 2rem !important;
    }
    h2, .h2 {
        font-size: 1.875rem !important;
    }
    h3, .h3 {
        font-size: 1.5rem !important;
    }
    h4, .h4 {
        font-size: 1.50rem !important;
    }
    h5, .h5 {
        font-size: 1.125rem !important;
    }
    h6, .h6, .text-md, a {
        font-size: 0.875rem !important;
    }
    body {
        font-size: 0.875rem !important;
    }
}
/* Common Style ends */
/******Hero Section********/
.hero-text-bg::before {
    content: '';
    background-image: url(../images/cannabis-img/text-bg.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -9px;
    width: 100%;
    height: 23px;
}

.hero-bg-1 {
    position: absolute;
    top: -31px;
}

.hero-bg-2 {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translate(-0%, -50%);
}

ul.cannabis-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0px;
}

ul.cannabis-ul li {
    font-size: 22px;
    padding-left: 30px;
    position: relative;
}

ul.cannabis-ul li::before {
    content: "";
    background-image: url(../images/cannabis-img/black-tick.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 15px;
    position: absolute;
    left: 0px;
    top: 9px;
}

/******Hero Section End********/
/******Billion Section********/
.billion-section {
    border-top: 1px solid #0000001A;
    margin-top: -54px;
    position: relative;
    z-index: 2;
}

.border-right {
    border-right: 1px solid #0000001A;
}

.billion-block {
    padding-inline: 10px;
    flex: 1;
}

.billion-block h4 {
    font-size: 50px;
    font-weight: 700;
}

/******Billion Section End********/
/******Section-3********/
.industry-text-block {
    margin-top: 72px;
}

.block-img {
    position: absolute;
    top: -100px;
    z-index: 2;
}

.hemp-mil-cannabis {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: -1;
}

/******Section-3 End********/
/******Section-4********/
.leading-cannabis-text-block {
    margin-top: 45px;
}

.leading-cannabis-1 {
    position: absolute;
    top: 0px;
    left: 39%;
}

.leading-cannabis-2 {
    position: absolute;
    right: 0px;
    bottom: -96px;
}

/******Section-4 End********/
/******Section-5********/
.cannabis-services-text-block h2 {
    padding-inline: 156px;
}

.cannabis-services-block {
    padding: 35px 35px 50px 35px;
    border: 1px solid #FFFFFF33;
    transition: 400ms;
    height: 100%;
}

.cannabis-services-block:hover {
    background-color: #173C2E;
    border: 1px solid transparent;
}

/******Section-5 End********/
/******Section-6********/
.business-card {
    padding: 35px;
    height: 100%;
}

.b-bottom {
    border-bottom: 1px solid #00000033;
}

.b-left-right {
    border-left: 1px solid #00000033;
    border-right: 1px solid #00000033;
}

.flower-block {
    position: absolute;
    top: -66px;
    left: 0px;
}
.flower-block img {
    height: 135px;
    width: 100%;
}
.flower-left {
    left: auto;
    right: 0px;
    top: auto;
    bottom: -68px;
}

/******Section-6 End********/
/******Section-7********/
.process-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #0000001A;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.process-card img {
    width: 64px;
    margin-top: 50px;
}

.sticky-blk {
    position: sticky;
    top: 150px;
    height: 100%;
}

/******Section-7 End********/
/******Section-8********/
.boost-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.leading-cannabis-3 {
    right: 0px;
    position: absolute;
    bottom: 20%;
}

/******Section-8 End********/
/******Section-9********/
.section-9, .section-12 {
    background-image: url(../images/cannabis-img/solutions-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/******Section-9 End********/
/******Section-10********/
.roadmaps-wrapper {
    padding: 92px 70px;
    overflow: hidden;
}

.roadmaps-wrapper::after {
    content: "";
    position: absolute;
    bottom: -50%;
    right: -292px;
    width: 640px;
    height: 640px;
    border-radius: 100%;
    background-color: #173C2E;
}

.strategic-card {
    padding: 78px 70px;
    height: 100%;
}

/******Section-10 End********/
/******Section-11 ********/
.feeling-playful-block {
    text-align: end;
}

.feeling-playful-block img {
    mix-blend-mode: luminosity;
}

/******Section-11 End********/
/**********FAQ**********/
.new-faq {
    border-top: 1px solid #0A090E;
}

.new-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #0A090E;
    padding: 50px 0px;
    border-radius: 0px;
}

.new-faq .accordion-item h2.accordion-header button {
    font-size: 30px;
    color: #07191C;
    font-weight: 700;
    background: none !important;
    padding: 0px;
    box-shadow: none !important;
}

.new-faq .accordion-body {
    padding: 0px;
    margin-top: 30px;
    font-size: 20px;
    max-width: 1303px;
}

.new-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.new-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40 ' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.new-faq .accordion-button::after {
    transition: all 0.5s;
    background-size: 40px;
    width: 40px;
    height: 40px;
}
/**********FAQ End**********/
/**********@Media Queary Start**********/
@media screen and (max-width: 1599px) {
    .font-22 {
        font-size: 16px;
    }
    ul.cannabis-ul li {
        font-size: 16px;
    }
    .cannabis-hero {
        padding-bottom: 30px !important;
    }
    .billion-section {
        margin-top: 0px;
    }
}
@media screen and (max-width: 1439px) {
.hero-bg-2 img {
    max-width: 85%;
}
.billion-block h4 {
    font-size: 38px;
}
.roadmaps-wrapper {
    padding: 60px 40px;
}
.strategic-card {
    padding: 50px 30px;
}
.boost-wrapper {
    row-gap: 20px;
}
.leading-cannabis-text-block {
    margin-top: 0;
}
.cannabis-services-block {
    padding: 25px;
}
.spacer-y {
    padding-block: 60px;
}
.new-faq .accordion-item h2.accordion-header button {
    font-size: 24px;
}
.new-faq .accordion-body {
    font-size: 18px;
}
body {
    font-size: 16px;
}
.hemp-mil-cannabis {
    width: 207px;
}
}
@media screen and (max-width: 1199px) {
    ul.cannabis-ul {
        gap: 11px;
    }
    .billion-block h4 {
        font-size: 32px;
    }
    .button {
        padding: 15px 26px;
        font-size: 16px;
    }
}
@media screen and (max-width: 991px) {
    .industry-text-block {
        margin-top: 40px;
    }
    .hemp-mil-cannabis {
        right: 26px;
        width: 27%;
    }
    .leading-cannabis-text-block {
        margin-top: 40px;
    }
    .business-card {
        border: 1px solid #00000033;
        padding: 25px;
    }
    .sticky-blk {
        position: unset;
    }    
    .process-card img {
        margin-top: 20px;
    }
    .mt-50 {
        margin-top: 20px;
    }
    .new-faq .accordion-item {
        padding: 20px 0px;
    }
    .new-faq .accordion-item h2.accordion-header button {
        font-size: 20px;
    }
    .mobile-direction {
        flex-direction: column-reverse;
    }
    
    
}
@media screen and (max-width: 767px) {
    section.section-4 {
        padding-top: 0px !important;
    }
    .cannabis-services-text-block h2 {
        padding-inline: 0px !important;
    }
    .leading-cannabis-2 {
        width: 24%;
    }
    .block-img {
        width: 50%;
        top: -60px;
    }
    .hero-text-bg::before { 
        background-size: contain;
        bottom: -20px;
    }
    .billion-wrapper {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .billion-wrapper .billion-block {
        width: 45%;
        flex: auto;
        border: none;
    }
    section {
        overflow: hidden;
    }
    .mb-70 {
        margin-bottom: 40px;
    }
    .industry-text-block {
        margin-top: 0px;
    }
}
/**********@Media Queary Start**********/
