:root {
  --steel-blue: #3b99d9;
  --steel-blue-2: #2e80b6;
  --dark-khaki: #a8d069;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --goldenrod: #e2a62b;
  --khaki: #face6a;
  --sandy-brown-2: #e4b962;
  --salmon: #fd7072;
  --indian-red: #cf404d;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray: #2d3e4f;
  --dark-slate-gray-2: #404047;
  --white-smoke-2: #edeff2;
  --white-smoke-3: #f3f3f3;
  --lavender: #e9e9e9;
  --light-gray: #d4d4d4;
  --dim-gray-3: #5d5d5d;
  --dark-slate-gray-3: #333;
  --white-smoke-4: #f0f0f0;
  --dark-gray: #aaa;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  background-color: #f0f0f0;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 135%;
}

h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 35px;
  font-weight: 400;
  line-height: 40px;
}

h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

h5 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  line-height: 160%;
}

a {
  color: #81b4fe;
  letter-spacing: -.3px;
  font-family: IBM Plex Mono, sans-serif;
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
}

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

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: Lato, sans-serif;
}

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

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 135%;
}

figure {
  margin-bottom: 20px;
}

figcaption {
  color: #aaa;
  text-align: center;
  margin-top: 5px;
  font-size: 13px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #888;
  border-radius: 3px;
  padding: 11px 20px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: none;
}

.button:hover {
  background-color: #333;
}

.button.w--current {
  background-color: #2e80b6;
}

.navigation-link {
  color: #aaa;
  margin-left: 25px;
  padding: 15px 0;
  font-size: 14px;
}

.navigation-link:hover, .navigation-link.w--current {
  color: #333;
}

.navigation-bar {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 1px rgba(0, 0, 0, .06);
}

.section {
  background-color: #fff;
  padding-top: 63px;
  padding-bottom: 63px;
  position: relative;
}

.section.accent {
  background-color: #f3f3f3;
}

.section.dark {
  color: #fff;
  background-color: #5d5d5d;
}

.social-button {
  background-color: #000;
  border-radius: 100px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 8px;
  transition: opacity .3s;
}

.social-button:hover {
  opacity: .7;
}

.social-button.border {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, .36);
  padding: 6px;
}

.social-button.facebook {
  background-color: #3c5791;
}

.social-button.twitter {
  background-color: #29a9e8;
}

.social-button.red {
  background-color: #d11529;
}

.social-button.pink {
  background-color: #fc488f;
}

.social-button.pink2 {
  background-color: #ed1081;
}

.social-button.orange {
  background-color: #db4e34;
}

.social-button.vimeo {
  background-color: #1ebae7;
}

.social-button.linkdin {
  background-color: #1485c3;
}

.social-button.instagram {
  background-color: #4b769b;
}

.social-button.tumblr {
  background-color: #2e5270;
}

.social-button.webflow {
  background-color: #3278bd;
}

.social-button.medium {
  background-color: #549f63;
}

.social-icon-link {
  width: 20px;
  opacity: .36;
  margin-right: 12px;
  transition: opacity .2s;
}

.social-icon-link:hover {
  opacity: .9;
}

.grey-rule {
  width: 90px;
  height: 1px;
  background-color: #c7c7c7;
  margin-top: 15px;
  margin-bottom: 15px;
}

.site-name {
  color: #333;
  margin-top: 11px;
  font-size: 24px;
  line-height: 100%;
  text-decoration: none;
  display: block;
}

.site-name.w--current {
  font-family: PT Serif, serif;
  font-weight: 700;
}

.site-description {
  text-align: left;
  margin-bottom: 20px;
  line-height: 145%;
  display: none;
}

.built-with-webflow {
  color: #aaa;
  text-align: left;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 10px;
}

.webflow-link {
  color: #aaa;
  text-decoration: none;
}

.webflow-link:hover {
  color: #333;
}

.post-wrapper {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}

.blog-image {
  height: 180px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  margin-right: 20px;
  transition: opacity .2s;
  display: block;
}

.blog-image:hover {
  opacity: .8;
}

.post-content {
  padding: 20px;
}

.post-summary {
  color: #aaa;
  font-size: 14px;
  line-height: 22px;
  display: inline;
}

.post-info {
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 8px;
  font-size: 10px;
  line-height: 18px;
  display: inline-block;
}

.post-info.when-link {
  text-decoration: none;
}

.post-info.when-link:hover {
  color: #333;
}

.blog-title-link {
  color: #333;
  text-decoration: none;
  transition: opacity .2s;
}

.blog-title-link:hover {
  opacity: .8;
}

.body-copy {
  font-family: Countera;
}

.body-copy img {
  border-radius: 3px;
}

.body-copy li {
  margin-bottom: 3px;
}

.body-copy blockquote {
  line-height: 145%;
}

.body-copy figure {
  margin-bottom: 20px;
}

.success-message {
  background-color: #f0f0f0;
  border-radius: 3px;
  padding-top: 49px;
  padding-bottom: 49px;
}

.success-text {
  margin-bottom: 0;
  font-size: 17px;
}

.text-field {
  border-radius: 3px;
  margin-bottom: 15px;
}

.text-field.text-area {
  min-height: 110px;
}

.social-link-group {
  margin-bottom: 10px;
}

.read-more-link {
  color: #aaa;
  margin-left: 8px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 22%;
  text-decoration: underline;
  transition: color .2s;
  display: inline;
}

.read-more-link:hover {
  color: #333;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  min-height: 800px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.blog-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 26px;
}

.white-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}

.circle-profile {
  width: 101%;
  border-radius: 500px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.small-heading {
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 135%;
  display: none;
}

.small-post-link {
  color: #aaa;
  text-align: left;
  margin-bottom: 15px;
  text-decoration: none;
  display: none;
}

.small-post-link:hover {
  color: #333;
}

.feature-posts-list {
  margin-bottom: -15px;
}

.white-bg-heading {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}

.content-column {
  padding-left: 20px;
}

.blog-page-image {
  height: 290px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.sidebar-on-mobile {
  padding-top: 40px;
  display: none;
}

.details-wrapper {
  margin-top: 8px;
  margin-bottom: 8px;
}

.flex-block {
  width: 50%;
  background-color: #fff;
}

.column {
  width: 100%;
  max-width: 630px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
  position: relative;
}

.text {
  color: #000;
  margin-top: 158px;
  font-family: Wonkers, sans-serif;
  font-size: 64px;
  font-weight: 400;
}

.error-b367dbfe-7968-231b-45dc-7803741d2728 {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.vectors-wrapper {
  height: 65px;
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 24px;
  display: flex;
  overflow: visible;
}

.vectors-wrapper-2 {
  width: 160.527px;
  height: 154.966px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-left: auto;
  margin-right: 111px;
  padding-left: 0;
  display: flex;
}

.vectors-wrapper-3 {
  width: 171px;
  height: 173px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: -158px;
  margin-left: 181px;
  padding-left: 0;
  display: flex;
}

.vectors-wrapper-4 {
  z-index: auto;
  height: 65.0982px;
  mix-blend-mode: darken;
  object-fit: cover;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: -12px;
  padding-bottom: 0;
  display: flex;
  position: static;
  top: 9%;
  bottom: 0%;
  left: 4%;
  right: auto;
  overflow: visible;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-0 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-1 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-2 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.div-block {
  padding-bottom: 13px;
}

.p {
  margin-top: 12px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.p.fr {
  margin-top: 25px;
}

.p.h2 {
  font-family: Wonkers, sans-serif;
}

.p.bi {
  font-style: italic;
  font-weight: 500;
}

.column-2 {
  width: 100%;
  max-width: 242px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.bw_headshot_high_contrast_square-1 {
  object-fit: cover;
}

.vectors-wrapper-5 {
  width: 110.032px;
  height: 110.384px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: 411px;
  display: flex;
}

.vectors-wrapper-6 {
  width: 178.845px;
  height: 184.382px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: -6px;
  display: flex;
}

.vectors-wrapper-7 {
  width: 25px;
  height: 25px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-right: 20px;
  display: flex;
}

.body {
  background-color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, .89), rgba(255, 255, 255, .89)), url('../images/grid_blue.svg');
  background-position: 0 0, 0 0;
}

.columns {
  width: 100%;
}

.flex-block-2 {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: auto;
  align-items: stretch;
  display: flex;
}

.flex-block-3 {
  width: 809%;
}

.image {
  width: 200px;
  border: 2px solid #000;
  border-radius: 20px;
  align-self: auto;
  margin-right: 22px;
}

.div-block-2 {
  width: 37%;
  background-color: #bafff3;
  border-right: 2px dotted #000;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 19px;
  display: flex;
  overflow: hidden;
}

.div-block-3 {
  width: 80%;
  padding-top: 91px;
  padding-left: 38px;
  padding-right: 43px;
}

.div-block-4 {
  width: 600px;
  margin-bottom: 68px;
  font-size: 16px;
}

.heading {
  margin-bottom: 4px;
  font-family: Wonkers, sans-serif;
  font-size: 28px;
}

.heading-2 {
  margin-top: 10px;
  margin-bottom: 11px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.image-2 {
  align-self: flex-end;
  margin-top: -96px;
  margin-right: 65px;
  padding-right: 0;
}

.column-3 {
  width: 100%;
  max-width: 630px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #fff;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  display: flex;
  position: relative;
}

.text-2 {
  color: #000;
  font-family: Wonkers, sans-serif;
  font-size: 64px;
  font-weight: 400;
}

.ellipse-1 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #000;
  margin-top: -155px;
  margin-left: 246px;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-3 {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.vector-19 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #dcfff9;
}

.vector-21 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #fcff5a;
  position: absolute;
  top: 94px;
  left: 24px;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-4 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-5 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.hi-i-m-alex-i-am-an-anesthesiologist-and-internist-who-works-at-stanford-university-i-m-interested-in-artificial-intelligence-design-thinking-in-healthcare-open-source-software-infectious-disease-epidemiology-i-am-currently-a-fellow-in-the-anesthesia-informatics-and-media-lab-where-i-focus-on-building-tools-to-improve-the-user-experience-of-patients-and-doctors-my-current-projects-include-medical-usability-analysis-evaluation-of-artificial-intelligence-and-improving-real-time-data-access-for-anesthesiologists-i-am-also-a-per-diem-physician-at-the-palo-alto-veterans-hospital-where-i-practice-hospital-medicine-i-completed-medical-school-at-the-uc-berkeley---ucsf-joint-medical-program-followed-by-the-combined-internal-medicine-anesthesiology-residency-at-the-stanford-school-of-medicine-6 {
  color: #000;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
}

.quick-stack {
  padding: 0;
}

.column-4 {
  width: 100%;
  max-width: 242px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
  position: relative;
}

.bw_headshot_high_contrast_square-2 {
  object-fit: cover;
}

.polygon-3 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #8cb6ff;
  overflow: visible;
}

.polygon-4 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #000;
}

.polygon-5 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #80b4ff;
}

.vectors-wrapper-8 {
  width: 163.696px;
  height: 113.831px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 126.331px;
  left: -10.0847px;
}

.column-5 {
  width: 100%;
  max-width: 242px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
}

.vectors-wrapper-99 {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-right: 33px;
  padding-right: 0;
  display: flex;
  position: absolute;
  right: 4px;
}

.vectors-wrapper-99.vr22 {
  height: 68px;
  margin-top: -202px;
  margin-left: 0;
  margin-right: -3px;
  display: block;
  overflow: visible;
}

.column-6 {
  width: 100%;
  max-width: 242px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  display: flex;
  position: relative;
}

.vectors-wrapper-10 {
  width: 141px;
  height: 142px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vectors-wrapper-11 {
  object-fit: cover;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: -203px;
  margin-left: 464px;
  display: flex;
}

.vector-22-stroke {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #000;
  margin-top: 35px;
  position: static;
  top: 471px;
  left: -177px;
  overflow: visible;
}

.vector-22-stroke-2 {
  border-style: solid;
  border-width: undefinedpx;
  object-fit: cover;
  border-color: #000;
  margin-top: 15px;
  margin-bottom: 13px;
  padding-bottom: 0;
  position: static;
  overflow: visible;
}

.navbar {
  width: 100%;
  background-color: rgba(221, 221, 221, 0);
  flex-direction: column;
  flex: 0 auto;
  padding-bottom: 79px;
  display: block;
  position: static;
}

.container {
  background-image: linear-gradient(rgba(186, 254, 243, .35), rgba(186, 254, 243, .35)), url('../images/back_dot.png');
  background-position: 0 0, 50% 0;
  background-size: auto, 8px;
  border-bottom: 2px dotted #000;
  justify-content: flex-end;
  display: flex;
}

.nav-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .navigation-link {
    text-align: center;
  }

  .navigation-bar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navigation-menu {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .site-name {
    margin-top: 13px;
  }

  .post-wrapper {
    margin-bottom: 20px;
  }

  .blog-image {
    height: 140px;
  }

  .content-wrapper {
    padding: 0;
  }

  .white-wrapper {
    padding: 14px;
  }

  .menu-button {
    padding: 15px;
  }

  .white-bg-heading {
    margin-bottom: 20px;
  }

  .content-column {
    padding-left: 10px;
  }

  .blog-page-image {
    height: 240px;
  }

  .text {
    margin-top: -51px;
  }

  .flex-block-2 {
    flex-direction: column;
  }

  .div-block-2 {
    width: 100%;
    height: 295px;
    min-height: 0;
    border-bottom: 2px dotted #000;
    border-right-style: none;
    align-items: center;
    padding-top: 0;
  }

  .div-block-3, .div-block-4 {
    width: 100%;
  }

  .navbar {
    color: #000;
    padding-bottom: 0;
  }

  .container {
    width: 100%;
    background-image: none;
    background-position: 0 0;
    background-size: auto;
    border-bottom-style: none;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .nav-menu {
    height: 200px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .menu-button-2 {
    color: #000;
  }

  .menu-button-2.w--open {
    background-color: rgba(0, 0, 0, 0);
    padding-left: 0;
  }

  .nav-link {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: #000;
    text-align: center;
    border-radius: 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .navigation-bar {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .grey-rule {
    margin-top: 21px;
    margin-bottom: 21px;
  }

  .built-with-webflow {
    margin-bottom: 0;
  }

  .post-wrapper {
    margin-bottom: 20px;
    margin-left: 0;
  }

  .blog-image {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .post-content {
    padding: 20px;
  }

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

  .content-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .blog-title {
    font-size: 27px;
    line-height: 36px;
  }

  .white-wrapper {
    margin-top: 20px;
    padding: 34px;
  }

  .blog-page-image {
    height: 220px;
  }

  .sidebar-on-mobile {
    padding-top: 0;
    display: block;
  }

  .text {
    font-size: 53px;
  }

  .div-block-2 {
    border-right-style: none;
  }

  .div-block-4 {
    width: 100%;
  }

  .vectors-wrapper-99 {
    margin-left: 263px;
  }

  .vectors-wrapper-11 {
    margin-top: -228px;
  }

  .brand {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
    line-height: 36px;
  }

  ul {
    margin-bottom: 0;
    padding-left: 30px;
  }

  .blog-image {
    height: 190px;
  }

  .blog-title {
    font-size: 26px;
    line-height: 32px;
  }

  .white-wrapper {
    padding: 20px;
  }

  .blog-page-image {
    height: 210px;
  }

  .text {
    width: 450px;
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-size: 38px;
    line-height: 98%;
  }

  .p {
    font-size: 14px;
  }

  .div-block-2 {
    width: 100%;
    align-items: center;
  }

  .div-block-3 {
    padding-top: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading {
    font-size: 24px;
  }

  .vectors-wrapper-99 {
    margin-left: 110px;
  }

  .menu-button-2 {
    background-color: rgba(200, 200, 200, .09);
  }

  .list {
    margin-bottom: 0;
    padding-left: 31px;
  }
}

#w-node-_1dbc6c4a-6983-20a6-eac2-23cd6c25fa11-da361d34 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 479px) {
  #w-node-_1dbc6c4a-6983-20a6-eac2-23cd6c25fa11-da361d34 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Wonkers';
  src: url('../fonts/Wonkers-ogjV.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}