:root {
  --subtexts: #666f77;
  --titles: #061829;
  --accent: #247cff;
  --borders: #dbe5ee;
  --white: white;
  --accent-hover: #1a4ed2;
  --background-grey: #f1f6fb;
  --background-grey-2: #becbdc;
  --accent-light: #f8fbff;
  --midnight-blue: #19253e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--subtexts);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

h1 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.115em;
}

h2 {
  color: var(--titles);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25em;
}

h3 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: var(--subtexts);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

a {
  color: var(--subtexts);
  text-decoration: underline;
  transition: color .3s;
}

a:hover {
  color: var(--accent);
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 24px;
}

ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 24px;
}

li {
  margin-bottom: 16px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--titles);
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--accent);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 32px 24px;
  font-size: 18px;
  line-height: 1.6em;
}

figcaption {
  color: #a5aaaf;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5em;
}

.header-wrapper {
  z-index: 99;
  border-bottom: 1px solid var(--borders);
  position: relative;
}

.container {
  max-width: 1128px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container.text-center {
  text-align: center;
}

.container.medium-size {
  max-width: 780px;
}

.nav-menu {
  color: #1a692f;
  font-size: 16px;
  font-weight: 500;
}

.top-bar-wrapper {
  border-bottom: 1px solid var(--borders);
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button {
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .3s, transform .3s, background-color .3s;
}

.button:hover {
  border-color: var(--accent-hover);
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translate(0, -2px);
}

.button.header {
  text-align: center;
  margin-left: 12px;
}

.button.header:hover {
  color: #fff;
}

.button.standard {
  background-color: #239c47;
  border-color: #1a4627;
  padding: 16px 32px;
  font-size: 16px;
}

.button.standard:hover {
  color: var(--white);
}

.button.standard.header {
  background-color: #239c47;
  border-color: #145029;
}

.button.large {
  text-align: left;
  background-color: #239c47;
  border-color: #1b5c36;
  margin-top: 30px;
  padding: 20px 36px;
  font-size: 20px;
}

.button.large:hover {
  color: var(--white);
}

.button.large.white {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--accent);
}

.button.large.white:hover {
  border-color: var(--white);
}

.button.banner {
  clear: left;
  border-color: var(--white);
  background-color: var(--white);
  color: #239c47;
  text-align: center;
  margin-top: 30px;
  margin-right: 16px;
  padding: 16px 20px;
  font-size: 20px;
}

.button.small {
  padding: 12px 24px;
  font-size: 16px;
}

.social-media-link {
  margin-left: 24px;
  transition: opacity .3s;
}

.social-media-link:hover {
  opacity: .7;
}

.contact-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.contact-icon {
  margin-right: 10px;
}

.dropdown-link {
  padding-top: 12px;
  padding-bottom: 12px;
  transition: background-color .3s, color .3s;
}

.dropdown-link:hover {
  background-color: #eef5ff;
}

.dropdown-icon {
  margin-left: 8px;
  margin-right: 0;
  position: static;
}

.dropdown {
  padding: 16px 14px;
}

.item {
  margin-right: 32px;
}

.nav-link-wrap {
  color: #1a692f;
  padding: 16px 14px;
}

.nav-menu-wrapper {
  color: #1a692f;
  grid-template: ". Area"
  / .25fr 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
}

.dropdown-list {
  background-color: #fff;
  border-radius: 6px;
  min-width: 200px;
  padding: 18px 16px;
  box-shadow: 0 13px 18px #0445a742;
}

.dropdown-list.w--open {
  padding-left: 0;
  padding-right: 0;
}

.contact-item {
  color: var(--subtexts);
  background-color: #0000;
  font-size: 16px;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.contact-item:hover {
  color: var(--accent);
}

.navbar {
  background-color: #fff;
  max-width: none;
}

.dropdown-toggle {
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding: 0;
  transition: color .3s;
  display: flex;
}

.dropdown-toggle:hover {
  color: #247cff;
}

.split-section-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  max-height: 700px;
}

.split-column.image {
  position: relative;
}

.split-column.image.hero {
  min-height: 760px;
}

.split-column.image.about-us, .split-column.image.why-us {
  min-height: 620px;
}

.split-column.image.banner {
  min-height: 570px;
}

.split-column.content {
  padding-left: 24px;
  padding-right: 24px;
}

.justify-column {
  max-width: 449px;
  margin-left: auto;
  margin-right: auto;
}

.justify-column.hero {
  padding-bottom: 100px;
}

.subheading-wrapper {
  align-items: flex-end;
  margin-bottom: -14px;
  display: flex;
}

.subheading-wrapper.center {
  justify-content: center;
}

.subheading {
  color: #239c47;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  padding-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
}

.subheading.accent {
  color: #239c47;
}

.subheading.white {
  color: var(--white);
}

.sufix-line {
  background-color: #286b2c;
  width: 30px;
  height: 4px;
  margin-bottom: 7px;
  margin-left: 8px;
  display: inline-block;
}

.large-paragraph {
  font-size: 22px;
}

.large-paragraph.text-center {
  text-align: center;
}

.large-paragraph.text-center.white-text {
  color: #fffc;
}

.margin-top-32px {
  text-align: left;
  margin-top: 32px;
}

.transition-bg-image {
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.transition-bg-image.hero {
  background-image: url('../images/marijuna-dispensary.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.transition-bg-image.about-us {
  background-image: url('../images/dispensary.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-image.why-us {
  background-image: url('../images/marijuana-pharmacy-california.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-image.banner-cta {
  background-image: url('../images/dispenary-in-california.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-image.about-us-page {
  background-image: url('../images/marijuna-dispensary.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.transition-bg-solid {
  background-color: var(--background-grey);
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  position: absolute;
  inset: 0%;
}

.transition-bg-solid.about-us {
  background-color: var(--background-grey-2);
}

.contact-bar-wrapper {
  z-index: 6;
  background-color: var(--white);
  border-top-right-radius: 8px;
  max-width: 90%;
  margin-top: -32px;
  padding: 33px 24px;
  position: relative;
  box-shadow: 4px 0 36px #8caacd29;
}

.background-object-1---hero, .backgroud-object-2---hero {
  z-index: 2;
  max-width: 100px;
  position: absolute;
}

.contact-bar-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr 1fr;
  place-content: center;
  place-items: center;
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
}

.contact-bar-column {
  align-items: flex-start;
  display: flex;
}

.contact-bar-icon {
  margin-right: 16px;
}

.contact-bar-title {
  color: #1a4627;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2em;
}

.contact-bar-link {
  margin-bottom: 12px;
  font-size: 16px;
  text-decoration: none;
  display: block;
}

.contact-bar-item {
  margin-bottom: 14px;
  font-size: 16px;
}

.scroll-down-wrapper {
  clear: none;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% -36px 0% auto;
}

.scroll-down {
  background-color: #239c47;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: transform .3s, background-color .3s;
  display: flex;
}

.scroll-down:hover {
  background-color: var(--accent-hover);
  transform: scale(1.1);
}

.arrow-scroll-down {
  width: 28px;
}

.section.section-contact-bar {
  background-color: var(--background-grey);
  padding-bottom: 60px;
}

.section.section-about-us, .section.section-why-us {
  background-color: var(--background-grey);
}

.section.our-services, .section.section-news {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.page-hero {
  text-align: center;
  background-color: #239c47;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.page-hero.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.page-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.page-content.services {
  text-align: left;
  padding-top: 32px;
  padding-bottom: 0;
}

.section.contact-us-page {
  margin-top: 80px;
  margin-bottom: 80px;
}

.section.about-content {
  background-color: var(--background-grey);
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.section-doctor-template {
  margin-top: 60px;
  margin-bottom: 60px;
}

.section.grey {
  background-color: var(--background-grey);
  padding-top: 80px;
  padding-bottom: 80px;
}

.background-object-about {
  max-width: 200px;
  position: absolute;
}

.background-object-why-us {
  z-index: 2;
  max-width: 40px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.center {
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background-color: #fff;
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  padding-bottom: 40px;
  padding-left: 24px;
  padding-right: 24px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 3px 6px #9bbce84a;
}

.card:hover {
  display: block;
  transform: translate(0, -5px);
  box-shadow: 0 6px 14px #8fb1df6e;
}

.card.blog-post {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.card.doctors {
  border-width: 0;
  padding: 0;
}

.card.password {
  padding: 60px 40px;
}

.icon-card {
  margin-top: -49px;
  margin-bottom: 22px;
}

.button-secondary {
  color: #247cff;
  text-align: center;
  background-color: #0000;
  border: 2px solid #247cff;
  border-radius: 4px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  transition: border-color .3s, background-color .3s, color .3s;
  display: inline-block;
}

.button-secondary:hover {
  border-color: var(--accent-hover);
  background-color: var(--accent-light);
  color: var(--accent-hover);
}

.button-secondary.standard {
  padding-left: 32px;
  padding-right: 32px;
}

.button-secondary.large {
  padding: 20px 36px;
  font-size: 20px;
}

.button-secondary.small {
  padding: 12px 24px;
  font-size: 16px;
}

.button-secondary.card {
  box-shadow: none;
  display: block;
  transform: translate(0);
}

.button-secondary.full-width {
  display: block;
}

.section-banner {
  background-color: #1a4627;
}

.header-h2 {
  color: #1a4627;
}

.header-h2.center {
  max-width: 600px;
}

.header-h2.white {
  color: var(--white);
}

.header-h1 {
  color: #1a4627;
  font-size: 45px;
}

.regular-text {
  font-weight: 400;
}

.regular-text.white {
  color: var(--white);
}

.regular-text.center {
  text-align: center;
  max-width: 800px;
}

.flex-buttons {
  text-align: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-secondary-icon {
  color: var(--white);
  text-align: center;
  border: 2px solid #fff;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  font-size: 16px;
  text-decoration: none;
  transition: transform .3s, color .3s;
  display: flex;
}

.button-secondary-icon:hover {
  color: var(--white);
  transform: translate(0, -2px);
}

.button-secondary-icon.large {
  flex: 0 auto;
  padding: 16px 36px;
  font-size: 18px;
}

.button-secondary-icon.banner {
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.button-icon {
  color: var(--white);
  background-color: #239c47;
  border-radius: 4px;
  justify-content: center;
  padding: 16px 24px;
  text-decoration: none;
  transition: transform .3s, color .3s;
  display: flex;
}

.button-icon:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translate(0, -2px);
}

.background-object-banner {
  z-index: 1;
  max-width: 150px;
  display: none;
  position: absolute;
  left: -82.562px;
}

.blog-posts {
  margin-top: 40px;
}

.blog-posts.template-2, .blog-posts.template-1 {
  margin-top: 0;
}

.collection-list {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.blog-post-wrapper {
  text-decoration: none;
}

.blog-post-wrapper:hover {
  color: var(--subtexts);
}

.card-content {
  padding: 32px 24px 40px;
}

.blog-post-title {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.25em;
  text-decoration: none;
}

.blog-post-date {
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}

.blog-post-date:hover {
  color: var(--subtexts);
}

.read-more-wrap {
  color: var(--accent);
  letter-spacing: .8px;
  text-transform: uppercase;
  padding-top: 24px;
  font-weight: 700;
  display: flex;
}

.blog-post-image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.read-more-link {
  padding-right: 12px;
}

.margin-top-28px {
  margin-top: 28px;
}

.grid-contact-us {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  justify-content: space-around;
}

.grid-contact-us.contact-page {
  background-color: #0000;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 5px 16px 3px #19253e17;
}

.form-wrapper {
  background-color: var(--white);
  border-top-right-radius: 8px;
  padding: 90px 120px;
  box-shadow: 0 -8px 34px #5870ad14;
}

.form-wrapper.contact-page {
  box-shadow: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 8px;
  padding: 40px 60px;
}

.form {
  margin-top: 54px;
}

.input-label {
  color: var(--titles);
  margin-bottom: 16px;
  font-size: 18px;
}

.input {
  background-color: #fff;
  border: 1px solid #cad6e1;
  border-radius: 4px;
  min-height: 64px;
  margin-bottom: 32px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 18px;
  transition: all .2s cubic-bezier(.645, .045, .355, 1);
}

.input:hover {
  background-color: #f9fbfd;
  border-color: #247cff;
}

.input:focus {
  border-width: 1px 1px 1px 4px;
  border-color: var(--accent) var(--accent) var(--accent) #247cff;
  color: #435261;
  background-color: #f9fbfd;
}

.input::placeholder {
  color: #666f77;
  font-size: 18px;
  font-weight: 500;
}

.input.password {
  margin-bottom: 16px;
}

.input.small {
  min-height: 48px;
}

.input.large {
  min-height: 80px;
}

.contact-information {
  background-color: #239c47;
  padding: 100px 48px;
}

.contact-information.contact-page {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.contact-info-header {
  color: #fff;
  margin-top: 0;
  margin-bottom: 24px;
}

.contact-buttons-container {
  max-width: 314px;
}

.icon-button {
  margin-right: 8px;
}

.icon-button.primary {
  margin-right: 12px;
}

.button-secondary-text {
  flex: 0 auto;
  font-weight: 500;
  line-height: 22px;
}

.success-message {
  text-align: left;
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  line-height: 26px;
}

.error-message {
  color: #ff4043;
  background-color: #0000;
  margin-top: 32px;
  padding: 0;
  line-height: 24px;
}

.offices-locations {
  border-top: 1px solid #7c82a1;
  margin-top: 38px;
  padding-top: 38px;
}

.offices-grid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
}

.office-location-title {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.location-list {
  margin-top: 18px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.location-item {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.footer-menu {
  padding-left: 0;
  list-style-type: none;
}

.footer-address {
  line-height: 23px;
}

.copyright {
  color: #666f77;
  text-align: center;
  margin-bottom: 0;
}

.footer-link {
  color: #666f77;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

.footer-link:hover {
  color: #247cff;
}

.footer-title {
  color: #1a4627;
  margin-bottom: 26px;
}

.footer-up-grid {
  grid-template-rows: auto;
  padding-top: 80px;
  padding-bottom: 44px;
}

.footer-columns-grid {
  grid-column-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 2.3fr 1fr .25fr;
  padding-bottom: 60px;
}

.footer-contact-icon {
  margin-right: 16px;
}

.footer-wrapper {
  border-top: 2px solid #dbe5ee;
}

.footer-address-block {
  color: #666f77;
  align-items: flex-start;
  display: flex;
}

.footer-link-box {
  color: #666f77;
  text-decoration: none;
  transition: color .3s;
}

.footer-link-box:hover {
  color: #247cff;
}

.footer-menu-item {
  align-items: center;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.footer-contact {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer-bottom {
  border-top: 2px solid #dbe5ee;
  padding-top: 48px;
  padding-bottom: 48px;
}

.go-up-button {
  z-index: 20;
  background-color: var(--accent);
  background-image: url('../images/arrow-up.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  margin-right: 42px;
  transition: opacity .3s, color .3s;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
}

.services-grid {
  grid-column-gap: 16px;
  grid-row-gap: 90px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-collection {
  background-color: #0000;
  margin-top: 90px;
}

.hero-wrapper {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  color: var(--white);
  text-align: center;
  font-size: 48px;
}

.vertical-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.margin-top-18 {
  margin-top: 18px;
}

.services-content {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 24px 60px;
}

.rich-text h2 {
  margin-bottom: 15px;
}

.rich-text p {
  margin-top: 10px;
  margin-bottom: 24px;
}

.rich-text h4 {
  margin-top: 12px;
  margin-bottom: 14px;
}

.rich-text img {
  margin-top: 16px;
}

.rich-text a {
  color: var(--accent);
  text-decoration: underline;
}

.rich-text a:hover {
  color: var(--accent-hover);
}

.rich-text.doctor-biography {
  text-align: left;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  padding: 24px 0;
  font-size: 22px;
}

.grid-3-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.doctor-image {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  width: 100%;
  max-width: 100%;
}

.doctor-name {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 18px;
}

.doctor-speciality {
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
}

.doctor-short-description {
  margin-top: 12px;
}

.icon-rounded {
  background-color: var(--accent);
  border-radius: 80px;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: background-color .3s;
}

.icon-rounded:hover {
  background-color: var(--accent-hover);
}

.icon-rounded.phone {
  background-image: url('../images/white-phone.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.icon-rounded.email {
  background-image: url('../images/white-email.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
}

.justify-content-space-between {
  justify-content: space-between;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-thumbnail {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 570px;
  margin-top: 30px;
}

.post-metadata-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  display: flex;
}

.author-wrapper, .post-date {
  margin-left: 18px;
  margin-right: 18px;
}

.blog-title {
  margin-top: 28px;
  margin-bottom: 0;
}

.author-text-block {
  display: flex;
}

.written-by {
  margin-right: 6px;
}

.meta-divider {
  background-color: var(--borders);
  width: 1px;
  height: 30px;
}

.badge-wrapper {
  justify-content: center;
  display: flex;
}

.category-badge {
  background-color: #eef5ff;
  border-radius: 4px;
  padding: 8px 24px;
  text-decoration: none;
  transition: background-color .3s, color .3s;
}

.category-badge:hover {
  color: var(--accent-hover);
  background-color: #dceaff;
}

.category-text {
  color: var(--accent);
}

.blog-post-content {
  margin-bottom: 80px;
}

.post-content {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.related-blog-posts {
  background-color: var(--background-grey);
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.grid-2-colums-content {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  align-content: center;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 60px;
}

.image-border {
  border-radius: 8px;
  box-shadow: 0 6px 24px #06467e33;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  max-width: 800px;
  height: 100vh;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-page-wrap.password {
  max-width: 680px;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-self: center;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-flow: column;
  flex: 0 auto;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.doctor-container {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.doctor-template-name {
  text-align: left;
  font-size: 46px;
}

.flex {
  display: flex;
}

.flex.align-top {
  align-items: center;
}

.flex.column-left {
  flex-direction: column;
  align-items: flex-start;
}

.articles-from {
  color: var(--titles);
  margin-right: 8px;
  font-size: 36px;
  font-weight: 700;
}

.articles-from-name {
  margin-top: 0;
  margin-bottom: 0;
}

._404 {
  color: #e0e6eb;
  font-size: 290px;
  line-height: 1em;
}

.page-not-found {
  color: var(--accent);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5em;
}

.not-found-text {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.5em;
}

.error-message-password {
  color: #ff1b1f;
  background-color: #fff4f4;
  margin-top: 22px;
  padding: 16px 24px;
}

.styleguide-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

.line-divider {
  background-color: var(--borders);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.order-list {
  list-style-type: decimal;
}

.checkbox {
  width: 18px;
  height: 18px;
}

.checkbox-label {
  margin-top: 4px;
  margin-bottom: 0;
  margin-left: 10px;
}

.radio-button {
  width: 18px;
  height: 18px;
}

.radio-button-label {
  margin-left: 8px;
}

.radio-button-field, .checkbox-field {
  margin-bottom: 24px;
}

.left-align {
  text-align: left;
}

.text-center {
  text-align: center;
}

.licenses-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-block {
  border: 1px solid #1b4b23;
}

.heading {
  color: #1a4627;
}

.div-block {
  border: 1px solid #777;
  border-radius: 2px;
}

.div-block-2 {
  border: 1px solid #000;
}

.heading-2, .heading-3, .heading-4 {
  color: #1a4627;
  text-align: center;
  background-color: #f1f1f1;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 1px 1px 10px #d3d3d3;
}

.columns {
  color: #919191;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
}

.column {
  background-color: var(--white);
  border-radius: 3px;
}

.div-block-3 {
  background-color: #fcfcfc;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: 1px 1px 10px silver;
}

.text-block-2 {
  color: #fff;
  text-align: center;
}

.cards-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  border-radius: 6px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 30px;
  display: grid;
}

.cards-image-mask {
  border-radius: 0%;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image {
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  object-position: 50% 50%;
  transform-style: preserve-3d;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.heading-5 {
  color: #1a4627;
}

.div-block-4 {
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 1px 1px 10px #e4e4e4;
}

.div-block-5 {
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 1px 1px 9px #e4e4e4;
}

.div-block-6 {
  text-align: center;
  cursor: ne-resize;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding-bottom: 20px;
  padding-left: 0;
  transition: top .2s;
  transform: translate(0);
  box-shadow: 1px 1px 9px #e4e4e4;
}

.heading-6, .heading-7, .heading-8 {
  color: #239c47;
  text-align: center;
}

.paragraph, .paragraph-2, .paragraph-3 {
  text-align: center;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.button-2 {
  text-align: center;
  background-color: #239c47;
  border-radius: 5px;
  padding: 15px 25px;
  font-size: 25px;
}

.link {
  color: #fff;
}

.link-2 {
  color: var(--white);
}

.call-to-action {
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-2 {
  max-height: 600px;
}

.grid {
  grid-template-columns: 1.25fr 1fr;
}

.margin-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.container-2 {
  max-width: 1000px;
  padding-left: 40px;
  padding-right: 40px;
}

.text-block-3 {
  color: #fff;
  font-weight: 400;
  line-height: 28px;
}

.paragraph-4 {
  color: #fff;
  font-weight: 400;
}

.heading-9 {
  color: #fff;
  font-size: 35px;
  line-height: 45px;
}

.image-3 {
  margin-bottom: 20px;
}

.text-block-4 {
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: #fff;
    position: absolute;
  }

  .menu-icon-middle-line {
    background-color: #061829;
    height: 2px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon-bottom-line {
    background-color: #061829;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .button.header {
    margin-bottom: 40px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .menu-icon {
    width: 34px;
    padding: 0;
  }

  .menu-icon.w--open {
    background-color: #0000;
  }

  .dropdown {
    padding-left: 24px;
    padding-right: 24px;
  }

  .item {
    margin-right: 20px;
  }

  .nav-link-wrap {
    padding-left: 24px;
    padding-right: 24px;
    transition: background-color .3s, color .3s;
  }

  .nav-link-wrap:hover {
    background-color: #e8f1ff;
  }

  .menu-icon-top-line {
    background-color: #061829;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .dropdown-list {
    box-shadow: none;
    min-width: 100%;
    max-width: 100%;
  }

  .split-section-grid {
    grid-template-columns: 1fr;
  }

  .split-column.image, .split-column.image.about-us, .split-column.image.why-us, .split-column.image.banner {
    min-height: 480px;
  }

  .justify-column {
    max-width: 100%;
    padding: 80px 40px;
  }

  .contact-bar-wrapper {
    border-top-right-radius: 0;
    flex-direction: column-reverse;
    max-width: 100%;
    padding-top: 0;
    display: flex;
  }

  .background-object-1---hero, .backgroud-object-2---hero {
    display: none;
  }

  .contact-bar-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .scroll-down-wrapper {
    justify-content: center;
    margin-top: -30px;
    padding-bottom: 48px;
    position: static;
  }

  .background-object-about, .background-object-why-us, .background-object-banner {
    display: none;
  }

  .blog-posts {
    padding-left: 40px;
    padding-right: 40px;
  }

  .collection-list {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .grid-contact-us, .grid-contact-us.contact-page {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    border-top-right-radius: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-information {
    padding: 80px 120px;
  }

  .contact-information.contact-page {
    padding: 60px;
  }

  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-content {
    padding: 60px;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
    padding-left: 80px;
    padding-right: 80px;
  }

  .blog-thumbnail {
    min-height: 380px;
  }

  .grid-2-colums-content {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  ._404 {
    font-size: 250px;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  .logo-image {
    max-width: 130px;
  }

  .top-bar-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .social-media-link {
    margin-left: 12px;
    margin-right: 12px;
  }

  .contact-info-wrapper {
    display: none;
  }

  .split-column.image.banner {
    min-height: 480px;
  }

  .justify-column {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    padding-left: 0;
  }

  .contact-bar-wrapper {
    padding-top: 48px;
  }

  .contact-bar-grid {
    grid-template-columns: 1fr;
  }

  .contact-bar-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-bar-icon {
    margin-bottom: 18px;
    margin-right: 16px;
  }

  .contact-bar-text {
    text-align: left;
  }

  .contact-bar-title {
    text-align: left;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .contact-bar-link {
    text-align: left;
  }

  .contact-bar-item {
    text-align: center;
  }

  .scroll-down-wrapper {
    display: none;
  }

  .section.page-content.services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card {
    padding-top: 40px;
  }

  .card.blog-post {
    padding-top: 0;
  }

  .icon-card {
    margin-top: 0;
  }

  .blog-posts {
    padding-left: 0;
    padding-right: 0;
  }

  .form-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .input {
    min-height: 54px;
  }

  .contact-information {
    padding-left: 24px;
    padding-right: 24px;
  }

  .offices-grid {
    grid-column-gap: 32px;
  }

  .footer-columns-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .services-collection {
    margin-top: 0;
  }

  .page-title {
    font-size: 40px;
  }

  .services-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .empty-state {
    font-size: 18px;
  }

  .form-block {
    margin-top: -16px;
  }

  .grid-3-columns {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .blog-thumbnail {
    min-height: 270px;
  }

  .post-metadata-wrapper {
    flex-direction: column;
  }

  .author-wrapper {
    margin-bottom: 12px;
  }

  .meta-divider {
    display: none;
  }

  .utility-page-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .doctor-container {
    grid-template-columns: 1fr;
  }

  .articles-from {
    font-size: 30px;
  }

  ._404 {
    font-size: 190px;
  }

  .page-not-found {
    font-size: 30px;
  }

  .not-found-text {
    font-size: 18px;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .call-to-action {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .button.large {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 18px;
  }

  .button.banner {
    margin-bottom: 12px;
    margin-right: 0;
    display: block;
  }

  .split-section-grid {
    place-items: center;
  }

  .split-column {
    width: 100%;
  }

  .justify-column {
    flex-direction: column;
    padding: 72px 0;
    display: flex;
  }

  .large-paragraph {
    font-size: 18px;
  }

  .contact-bar-item {
    text-align: left;
  }

  .section.page-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card, .card.password {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-card {
    margin-bottom: 12px;
  }

  .flex-buttons {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .button-secondary-icon.large {
    flex-direction: column;
  }

  .button-icon {
    flex-direction: column;
    align-items: center;
  }

  .form-wrapper.contact-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input-label {
    font-size: 16px;
  }

  .contact-information.contact-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .icon-button.primary {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .footer-title {
    margin-bottom: 16px;
  }

  .footer-up-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }

  .justify-content-space-between {
    flex-direction: column;
    justify-content: space-around;
  }

  .doctor-contact-information {
    margin-top: 18px;
  }

  .doctor-contact-information.doctor-template {
    align-self: flex-start;
  }

  .blog-thumbnail {
    min-height: 140px;
  }

  .author-text-block {
    flex-direction: column;
  }

  .written-by {
    margin-bottom: 4px;
    margin-right: 0;
  }

  .utility-page-content {
    align-items: center;
  }

  .doctor-template-name {
    font-size: 40px;
  }

  .flex.align-top {
    flex-direction: column;
    justify-content: center;
  }

  .articles-from {
    margin-right: 0;
    padding-bottom: 12px;
  }

  ._404 {
    font-size: 130px;
  }

  .page-not-found {
    font-size: 24px;
  }

  .not-found-text {
    font-size: 16px;
  }

  .centered-container {
    text-align: left;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#w-node-af684ee7-055e-79ef-1b13-d5aa208aae56-2a530db3 {
  place-self: center;
}

#w-node-b1c16193-a8e4-9fba-a563-18b977742972-2a530db3, #w-node-c2f4a8c0-a7d1-16d4-b8dd-995056e33b29-2a530db3, #w-node-_8ebb027d-e121-07c0-417d-79903db2ce49-2a530db3 {
  place-self: start center;
}

#w-node-adf76295-6499-d943-66f9-d1bce0d3c975-2a530db3, #w-node-e9c5233f-7146-6914-7283-06983f4a4e40-2a530db3, #w-node-cade06ad-0452-e70e-0347-7d533e57b408-2a530db3 {
  place-self: center;
}

#w-node-_90487ff3-2747-1260-c793-eb718c16f94d-2a530db3 {
  align-self: end;
}

#w-node-_5559221c-41b9-c7f7-236f-c0cb4682a9ae-4682a9aa {
  justify-self: end;
}

#w-node-ddb3dd2b-8950-2628-fcf0-54e84f19d49d-4f19d49b {
  place-self: center;
}

#w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf7d-a1b2bf79 {
  align-self: center;
}

#w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf89-a1b2bf79, #w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf93-a1b2bf79 {
  place-self: center end;
}

#w-node-_61a5cbb8-5815-6eed-d530-e71f58cfd960-57530dbe {
  place-self: center;
}

#w-node-_87a5736a-9672-cdee-824c-8563aaa3b5cf-77530dc5, #w-node-_87a5736a-9672-cdee-824c-8563aaa3b5d6-77530dc5, #w-node-_87a5736a-9672-cdee-824c-8563aaa3b5dd-77530dc5 {
  place-self: start center;
}

#w-node-_20427d05-0555-e3eb-ef84-665009c5ad0e-77530dc5, #w-node-ce241c08-8f81-de23-a693-c032b51b3548-c5530dc6, #w-node-f5a0fb16-b703-ae34-1281-e4165914f0f1-c5530dc6 {
  align-self: end;
}

#w-node-_8417fcb9-be7f-ed6d-98c8-03a720bc5f7f-42d174b2 {
  place-self: center;
}

#w-node-c40e1e46-3dd1-3e98-fbf5-59231c286a5b-42d174b2, #w-node-c40e1e46-3dd1-3e98-fbf5-59231c286a5b-70fd1748, #w-node-c40e1e46-3dd1-3e98-fbf5-59231c286a5b-45773206, #w-node-c40e1e46-3dd1-3e98-fbf5-59231c286a5b-03adc4c4, #w-node-c40e1e46-3dd1-3e98-fbf5-59231c286a5b-b45447f5 {
  align-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-adf76295-6499-d943-66f9-d1bce0d3c982-2a530db3, #w-node-cade06ad-0452-e70e-0347-7d533e57b403-2a530db3 {
    order: 9999;
  }

  #w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf91-a1b2bf79 {
    align-self: center;
  }

  #w-node-_50020eae-abb3-e75c-0b85-e210a1b2bfb0-a1b2bf79 {
    place-self: center end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b1c16193-a8e4-9fba-a563-18b977742972-2a530db3, #w-node-c2f4a8c0-a7d1-16d4-b8dd-995056e33b29-2a530db3, #w-node-_8ebb027d-e121-07c0-417d-79903db2ce49-2a530db3 {
    justify-self: start;
  }

  #w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf89-a1b2bf79 {
    justify-self: center;
  }

  #w-node-_50020eae-abb3-e75c-0b85-e210a1b2bf91-a1b2bf79, #w-node-_87a5736a-9672-cdee-824c-8563aaa3b5cf-77530dc5, #w-node-_87a5736a-9672-cdee-824c-8563aaa3b5d6-77530dc5, #w-node-_87a5736a-9672-cdee-824c-8563aaa3b5dd-77530dc5 {
    justify-self: start;
  }

  #w-node-e23f5753-3858-9a19-2933-b70ca54956da-77530dc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e23f5753-3858-9a19-2933-b70ca54956dc-77530dc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-e23f5753-3858-9a19-2933-b70ca54956d3-77530dc5, #w-node-e23f5753-3858-9a19-2933-b70ca54956d5-77530dc5, #w-node-_3c497bed-f031-4da5-110c-9918fe1d1ee2-77530dc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3c497bed-f031-4da5-110c-9918fe1d1ee4-77530dc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_3c497bed-f031-4da5-110c-9918fe1d1ef0-77530dc5, #w-node-_3c497bed-f031-4da5-110c-9918fe1d1ef2-77530dc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5559221c-41b9-c7f7-236f-c0cb4682a9ad-4682a9aa, #w-node-_5559221c-41b9-c7f7-236f-c0cb4682a9ae-4682a9aa {
    justify-self: center;
  }

  #w-node-e23f5753-3858-9a19-2933-b70ca54956d7-77530dc5, #w-node-e23f5753-3858-9a19-2933-b70ca54956c9-77530dc5, #w-node-e23f5753-3858-9a19-2933-b70ca54956d0-77530dc5, #w-node-_3c497bed-f031-4da5-110c-9918fe1d1edf-77530dc5, #w-node-_3c497bed-f031-4da5-110c-9918fe1d1ee6-77530dc5, #w-node-_3c497bed-f031-4da5-110c-9918fe1d1eed-77530dc5 {
    grid-column: span 1 / span 1;
  }
}


