@font-face {
  font-family: "wide";
  src: url(../fonts/wide.woff) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "signs";
  src: url(../fonts/MADETOMMYBlack.otf) format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "normal";
  src: url(../fonts/regular.otf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "strong";
  src: url(../fonts/bold.otf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "medium";
  src: url(../fonts/medium.otf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bold";
  src: url(../fonts/wide-bold.otf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "normal";
}

h1,
h2 {
  font-family: "wide";
}

h1,
h2 {
  text-transform: uppercase;
}

h3 {
  font-family: "medium";
}

h4,
h5,
h6,
strong,
b,
button,
th {
  font-family: "medium";
}

section,
p,
span,
div,
li,
td {
  font-family: "normal";
}

.font-light {
  font-family: "light" !important;
}

.font-regular {
  font-family: "normal" !important;
}

.font-medium {
  font-family: "medium" !important;
}

.font-bold {
  font-family: "bold" !important;
}

:root {
  --teal: #4ec0b0;
  --cyan: #2fdac6;
  --lime: #30d890;
  --theme: #254D27;
  --dullGreen: #254d27;
  --green: #000;
  --leafyGradient: linear-gradient(to right, #30d890, #2ed4c1);
  --strongGradient: linear-gradient(45deg, #20966E, #06390D);
  --orangeGradient: linear-gradient(45deg, #fd7e14, #ff4b00);
  --purpleGradient: linear-gradient(45deg, #d091d9, #CD48DF);
  --pinkGradient: linear-gradient(45deg, #ffe0ed, #FFD3E5);
  --brandGreen: #052900;
  --brandLightGreen: #76b732;
  --brandDullGreen: #667a65;
  --brandGrey: #bfbfbf ;
}

html body ol li::before {
  color: var(--teal) !important;
}

html body ul li::before {
  background-color: var(--teal) !important;
}

body {
  position: relative;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #495158;
}

html {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.8rem;
}

@media (max-width: 576px) {
  h2 {
    font-size: 2.2rem;
  }
}
h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

.font-fourth {
  font-size: 1.125rem;
}

.font-tewelth {
  font-size: 12px;
}

p {
  font-size: 16px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol li,
ul li {
  display: inline-block;
}

iframe {
  border: 0;
}

button {
  cursor: pointer;
  background: transparent;
}

button:focus {
  outline: none;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

img {
  width: 100%;
}

.thumb-img,
.thumb-img > img {
  display: block;
  width: 100%;
}

section {
  position: relative;
}

.rangeLine {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.rangeLine .line {
  position: relative;
  width: 50%;
  height: 2px;
  background-color: var(--brandGreen);
}
@media (max-width: 1199px) {
  .rangeLine .line {
    height: 1px;
    width: 75%;
  }
}
.rangeLine .line .dock {
  border-radius: 50px;
  background-color: var(--brandGreen);
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30%;
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 1199px) {
  .rangeLine .line .dock {
    height: 16px;
    width: 16px;
  }
}

.vh-gap {
  gap: 70px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid .col-span-6 {
  grid-column: span 6/span 6;
}
@media (max-width: 991px) {
  .grid .col-span-6.col-span-12 {
    grid-column: 1/-1;
  }
}
.grid .col-span-4 {
  grid-column: span 4/span 4;
}
@media (max-width: 1199px) {
  .grid .col-span-4.col-span-6 {
    grid-column: span 6/span 6;
  }
}
@media (max-width: 767px) {
  .grid .col-span-4.col-span-12 {
    grid-column: 1/-1;
  }
}
.grid .col-span-3 {
  grid-column: span 3/span 3;
}
.grid .col-span-2 {
  grid-column: span 2/span 2;
}

section,
p,
span,
div,
li,
td {
  font-family: "normal";
  letter-spacing: 0.5px !important;
}
section strong,
p strong,
span strong,
div strong,
li strong,
td strong {
  font-family: bold;
}

.dottedLine {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .dottedLine {
    gap: 4px;
  }
}
.dottedLine .line {
  margin-left: 8px;
  height: 2px;
  width: 46vw;
  background-color: #bfbfbf;
}
@media (max-width: 1199px) {
  .dottedLine .line {
    height: 1px;
    margin-left: 4px;
    width: 65vw;
  }
}
.dottedLine .dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #bfbfbf;
  position: relative;
  right: 50px;
  opacity: 0;
  transition: 0.25s ease;
}
@media (max-width: 1199px) {
  .dottedLine .dot {
    height: 5px;
    width: 5px;
  }
}
.dottedLine .dot.putin {
  right: 0;
  opacity: 1;
}

.rangeBox {
  display: flex;
  justify-content: start;
  width: 100%;
}
.rangeBox .line {
  position: relative;
  width: 50%;
  height: 2px;
  background-color: var(--brandDullGreen);
}
@media (max-width: 1199px) {
  .rangeBox .line {
    height: 1px;
  }
}
.rangeBox .line .dock {
  border-radius: 0 20px 0 20px;
  background-color: var(--brandDullGreen);
  height: 30px;
  width: 150px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30%;
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 1199px) {
  .rangeBox .line .dock {
    height: 15px;
    width: 70px;
    border-radius: 0 9px 0 9px;
  }
}

.consultationHero {
  padding: 40px 1vw;
}
@media (max-width: 1199px) {
  .consultationHero {
    padding: 20px 20px 0;
  }
}
.consultationHero .media {
  background-image: url(../images/consultationherobg.png);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 45px;
  background-size: cover;
  padding: 90px 1vw;
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
}
.consultationHero .media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(to right, rgba(3, 26, 0, 0.8470588235), rgba(5, 41, 0, 0.2078431373));
}
@media (max-width: 1199px) {
  .consultationHero .media::after {
    background: linear-gradient(to bottom, rgba(3, 26, 0, 0.8470588235), rgba(5, 41, 0, 0.2078431373));
  }
}
.consultationHero .media > div {
  position: relative;
  z-index: 10;
}
@media (max-width: 1199px) {
  .consultationHero .media {
    border-radius: 30px;
    padding: 45px 5px;
    flex-direction: column;
  }
}
.consultationHero .media .text {
  display: block;
}
@media (max-width: 991px) {
  .consultationHero .media .text {
    text-align: center;
  }
}
.consultationHero .media h1 {
  color: #fff;
  font-family: wide;
  text-transform: uppercase;
  font-size: 44px;
  margin-bottom: 16px;
}
@media (max-width: 1199px) {
  .consultationHero .media h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .consultationHero .media h1 {
    font-size: 26px;
  }
}
.consultationHero .media p {
  font-size: 18px;
  font-family: normal;
  color: white;
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .consultationHero .media p {
    font-size: 16px;
  }
}
.consultationHero .pcForm {
  border-radius: 35px;
  padding: 30px 25px 0;
  background: rgba(191, 191, 191, 0.6);
  backdrop-filter: blur(3px);
  max-width: 410px;
  margin: 0 0 0 auto;
}
@media (max-width: 991px) {
  .consultationHero .pcForm {
    margin: 30px auto 0;
  }
}
.consultationHero .pcForm input,
.consultationHero .pcForm select {
  border: none;
  background: #fff;
  border-radius: 50px;
  color: var(--brandGreen);
  font-size: 18px;
  font-family: normal;
  height: 47px;
  padding: 5px 25px;
  border: 1px solid #bfbfbf;
  letter-spacing: 1px;
}
.consultationHero .pcForm .form-group {
  width: 100%;
  margin: 0 0 10px;
}
.consultationHero .pcForm .btn-new {
  font-size: 22px;
  font-family: 'wide';
  text-transform: uppercase;
  border-radius: 50px;
  border: 3px solid var(--brandGreen);
  background: #bfbfbf;
  height: 50px;
  padding: 7px 30px;
  color: var(--brandGreen);
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  transform: translateY(50%);
}
.consultationHero .pcForm .btn-new:hover {
  color: #fff;
  background-color: var(--brandGreen);
}
.consultationHero .fflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0;
}
.consultationHero .fflex .custom-control-input {
  border: 1px solid #fff;
  background-color: transparent;
}
.consultationHero .fflex .custom-control-label,
.consultationHero .fflex p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px !important;
  color: var(--brandGreen);
  font-family: normal;
}
.consultationHero .fflex .custom-control-label::after {
  background-color: #bfbfbf;
  border: 1px solid #fff;
  border-radius: 3px;
}
.consultationHero .fflex .custom-control-label::before,
.consultationHero .fflex .custom-control-label::after {
  box-shadow: none !important;
  top: 2px;
  height: 16px;
  width: 16px;
  background-size: 8px;
}
.consultationHero .fflex input:checked + .custom-control-label::after {
  background-color: var(--brandGreen);
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: none !important;
  border-color: var(--brandGreen) !important;
}

.sidebar-socials {
  position: fixed;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateY(-50%);
  background-color: #fff;
  gap: 5px;
  padding: 8px;
  border-radius: 50px;
  z-index: 20;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .sidebar-socials {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sidebar-socials {
    right: 15px;
  }
}
.sidebar-socials a {
  filter: brightness(1) contrast(1);
  transform: scale(1);
  transition: 0.15s ease-in;
}
.sidebar-socials a img {
  height: 32px;
  width: auto;
}
.sidebar-socials a :hover {
  filter: brightness(3) contrast(1.5);
  transform: scale(1.2);
}

.whatYouGet {
  padding: 90px 0;
}
@media (max-width: 991px) {
  .whatYouGet {
    padding: 50px 0;
  }
}
.whatYouGet .text {
  text-align: center;
  max-width: 825px;
  display: block;
  margin: 0 auto;
}
.whatYouGet .text h2 {
  font-size: 50px;
  color: var(--brandGreen);
  font-family: wide;
  margin: 0 0 15px;
}
@media (max-width: 1199px) {
  .whatYouGet .text h2 {
    font-size: 32px;
  }
}
.whatYouGet .text p {
  margin: 0 0 45px;
  color: var(--brandGreen);
  font-family: normal;
  font-size: 18px;
}
.whatYouGet .row > div {
  margin-bottom: 20px;
}
.whatYouGet .box {
  padding: 45px 40px;
  background-color: var(--brandGreen);
  border-radius: 15px;
  display: flex;
  height: 100%;
  align-items: center;
}
.whatYouGet .box p {
  text-align: center;
  font-family: medium;
  font-size: 18px;
  color: #fff;
}
.whatYouGet .row > div:nth-child(even) .box {
  background: var(--brandDullGreen);
}

.cannabisCare {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  .cannabisCare {
    padding: 60px 0;
  }
}
.cannabisCare .text h2 {
  font-size: 50px;
  color: var(--brandGreen);
  text-transform: uppercase;
  margin-bottom: 35px;
  font-family: 'wide';
  line-height: 1;
}
@media (max-width: 1199px) {
  .cannabisCare .text h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .cannabisCare .text {
    text-align: center;
  }
}
.cannabisCare .text p {
  font-size: 18px;
  font-family: normal;
  color: var(--brandGreen);
}
.cannabisCare .text p ~ p {
  margin-top: 20px;
}
.cannabisCare .text p strong {
  font-family: strong;
}
.cannabisCare .careBox {
  background-color: var(--brandGreen);
  border-radius: 0 20px 0 20px;
  display: inline-block;
  margin-bottom: 20px;
  height: 65px;
  width: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cannabisCare .careBox img {
  width: auto;
  height: 32px;
}
.cannabisCare .gridMedia {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0px 35px 0 35px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cannabisCare .vh-gap {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cannabisCare .grid.shift-order > div:nth-child(1) {
    order: 2;
  }
  .cannabisCare .grid > div:nth-child(2) {
    order: 1;
  }
}

.faqs {
  padding: 110px 0px 90px 0px;
}
.faqs .text {
  text-align: center;
  display: block;
}
.faqs .text h2 {
  font-size: 50px;
  color: var(--brandGreen);
  font-family: wide;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .faqs .text h2 {
    font-size: 32px;
    margin: 0 0 40px;
  }
}
.faqs .text p {
  margin: 0 0 45px;
  color: var(--brandGreen);
  font-family: normal;
  font-size: 18px;
}
.faqs .card {
  background: transparent;
  overflow: hidden;
  border: none;
  margin: 15px 0;
}
.faqs .card .card-header {
  padding: 0;
  border: none;
  padding: 5px 30px;
  background: var(--brandDullGreen);
  border-radius: 60px;
  font-size: 19px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.4;
  font-family: medium;
  height: 60px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .faqs .card .card-header {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .faqs .card .card-header {
    font-size: 15px;
  }
}
.faqs .card .card-body {
  background: #fff;
  padding-top: 0;
  padding: 20px 30px;
  border: 4px solid #667A65;
  border-radius: 15px;
  margin: 10px 0 20px 0;
}
.faqs .card .card-body p {
  margin: 0;
}
.faqs .card .card-body ul {
  margin: 15px 0px;
}
.faqs .card .card-body ul li {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}
.faqs .card .card-body ul li a {
  color: #76B732;
}
.faqs .card .card-body ul li::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  background: transparent !important;
  color: #76B732;
  font-weight: 800;
  font-size: 8px;
  margin-right: 10px;
  position: absolute;
  top: 6px;
  left: 0;
}
.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 30px;
}