:root {
  --brand-blue: #4db9d1;
  --brand-orange: #fc7753;
  --dark-gray: #999;
  --medium-aquamarine: #5cc489;
  --primary-brand-purple: #8447ff;
  --dark-slate-gray-2: #243039;
  --dark-slate-gray: #4d565d;
  --peru: #dd783f;
  --medium-turquoise: #4aaec2;
  --pale-violet-red: #d25f7c;
  --white: #4db9d1;
}

.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;
}

body {
  color: #333;
  font-family: Lora;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #2e2e2e;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Biryani, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Biryani, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-family: Oxygen;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oxygen;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oxygen;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 22px;
}

a {
  color: #dd783f;
  text-decoration: none;
}

a:hover {
  color: #c2581b;
  text-decoration: none;
}

img {
  max-width: 100%;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-section {
  background-color: #fc7753;
  height: 360px;
  margin-top: 95px;
  margin-bottom: -95px;
  padding-top: 95px;
  padding-bottom: 0;
  position: relative;
}

.navbar {
  background-color: #fc7753;
  margin-bottom: -96px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: Biryani, sans-serif;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.menu-link {
  float: left;
  margin-right: 1px;
  padding-left: 5px;
  padding-right: 5px;
  font-family: Oxygen;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
}

.menu-icon {
  float: right;
  line-height: 13px;
  display: inline-block;
}

.menu-button {
  float: right;
  color: #ffffffd9;
  border-radius: 2px;
  margin-top: 0;
  padding: 10px 8px 9px;
  transition: background-color .35s, color .35s;
  display: block;
}

.menu-button:hover {
  color: #fff;
  background-color: #ffffff1a;
}

.menu-button.w--open {
  background-color: #ffffff40;
}

.long-text {
  color: #fff;
  margin-top: 7px;
  font-family: Biryani, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 26px;
}

.hero-heading {
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 14px;
  font-family: Biryani, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 51px;
}

.hero-subheading {
  color: #ffffffa1;
  margin-bottom: 30px;
  font-family: Biryani, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

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

.button {
  color: #fff;
  background-color: #8447ff;
  border-radius: 3px;
  padding: 12px 31px;
  font-family: Biryani, sans-serif;
  font-weight: 900;
  transition: background-color .2s, color .2s;
}

.button:hover {
  color: #fff;
  background-color: #8447ff;
}

.button.w--current:hover {
  background-color: #8447ff;
}

.main-section {
  background-color: #fff;
  border-radius: 5px;
  margin-top: 95px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.main-section.gray {
  background-color: #f8f8f8;
}

.main-section.bottom-padding {
  padding-top: 0;
  padding-bottom: 89px;
  font-family: Oxygen;
}

.thumbnail-wrapper {
  background-color: #fff;
  border-radius: 3px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px #00000017;
}

.thumbnail-wrapper:hover {
  transform: translate(0, -3px);
  box-shadow: 0 0 0 1px #00000017, 0 2px 23px #00000017;
}

.blog-title {
  color: #101315;
  margin-bottom: 6px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  display: inline-block;
}

.category-tag {
  color: #fff;
  text-transform: uppercase;
  background-color: #5cc489;
  border-radius: 2px;
  margin-top: 6px;
  margin-right: 6px;
  padding: 6px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 10px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.thumbnail-text {
  border-top: 1px solid #e5e5e5;
  height: auto;
  margin-bottom: 0;
  padding: 10px 13px;
  font-family: Poppins, sans-serif;
  position: relative;
  overflow: hidden;
}

.thumbnail-date {
  float: right;
  color: #999;
  font-family: Oxygen;
  font-size: 12px;
  line-height: 35px;
  display: inline-block;
}

.thumbnail-date.lite {
  color: #ffffffb3;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.author-img {
  float: right;
  border-radius: 20px;
  width: 32px;
  height: auto;
  margin-top: 5px;
  margin-bottom: 0;
  margin-right: 10px;
  position: static;
  bottom: 10px;
  right: 10px;
}

.thumb-details {
  background-color: #fcfcfc;
  border-top: 1px solid #ccc;
  padding: 6px 13px;
}

.preview-text {
  color: #7a7a7a;
  height: auto;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  line-height: 19px;
  overflow: hidden;
}

.function-title {
  float: left;
  color: #999;
  font-family: Courier Prime, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.function-title.lite {
  color: #fff;
  object-fit: fill;
  background-color: #0000005c;
  border: 2px solid #000;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Courier Prime, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.container {
  width: 1100px;
  max-width: 78%;
  margin: 1px auto 0;
  padding-top: 40px;
  display: block;
  position: relative;
}

.section-heading {
  text-align: center;
  font-family: Poppins, sans-serif;
}

.med-divider {
  background-color: #dedede;
  width: 20%;
  height: 1px;
  margin: 16px auto;
  list-style-type: lower-alpha;
  display: block;
}

.white {
  color: #efefef;
  font-weight: 300;
}

.form-wrapper {
  width: 500px;
  margin: 20px auto 80px;
  display: block;
}

.field {
  float: left;
  color: #4d565d;
  border: 1px #000;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  width: 75%;
  height: 50px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
}

.submit-button {
  background-color: #ffffff47;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 25%;
  height: 50px;
  font-family: Biryani, sans-serif;
  font-weight: 900;
  transition: background-color .35s, color .35s;
}

.submit-button:hover {
  background-color: #dd783f;
}

.footer-section {
  background-color: var(--brand-blue);
  border-top: 2px solid #ffffff1f;
  padding-top: 27px;
  padding-bottom: 27px;
}

.footer-section.join-us-section {
  background-color: var(--brand-blue);
  border-top-color: #1f1f1f1f;
  border-bottom: 2px solid #ffffff1f;
  font-family: Oxygen;
}

.footer-link {
  float: none;
  color: #fff;
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 0 3px 20px;
  font-family: Biryani, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: color .35s;
  display: inline-block;
}

.footer-link:hover {
  color: #fff;
}

.thumbnail-image {
  background-color: #d6d6d6;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 150px;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.featured-wrapper {
  border-radius: 3px;
  transition: transform .2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-wrapper:hover {
  transform: translate(0, -5px);
}

.featured-text {
  background-image: linear-gradient(#00000008, #0009 46%, #000000c2);
  padding: 60px 20px 62px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.featured-title {
  color: #fff;
  text-align: left;
  margin-bottom: 4px;
  padding-right: 20px;
  font-size: 27px;
  line-height: 30px;
  display: block;
}

.category-tag-2 {
  z-index: 10;
  color: #fff;
  text-transform: uppercase;
  background-color: #5cc489;
  border-radius: 2px;
  padding: 7px 9px 6px;
  font-family: Oxygen;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.featured-description {
  color: #ffffffb3;
  text-align: left;
  padding-right: 44px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 25px;
}

.featured-details {
  padding: 10px 20px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.featured-image {
  background-image: url('../images/3f4eb74a.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 3px;
  height: 280px;
  margin-top: 0;
  margin-bottom: 0;
  position: static;
  inset: 0;
}

.blog-date {
  color: #999;
  margin-bottom: 2px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 25px;
  display: block;
}

.blog-category {
  color: #d25f7c;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 6px;
  font-family: Poppins, sans-serif;
  text-decoration: none;
  display: inline-block;
}

.author-link {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .2s;
  display: block;
}

.author-link:hover {
  transform: scale(1.02);
}

.author-wrapper {
  text-align: center;
  width: 70%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.author-name {
  color: #353535;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Courier Prime, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.author-name:hover {
  color: #243039;
}

.inner-hero {
  background-color: var(--brand-orange);
  text-align: center;
  height: 300px;
  margin-top: 90px;
  margin-bottom: -90px;
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
}

.author-picture {
  float: left;
  border-radius: 6px;
  width: 300px;
  margin-bottom: 17px;
  margin-right: 25px;
  display: inline-block;
  position: relative;
  bottom: 0;
  left: 0;
}

.author-name-main {
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: Courier Prime, sans-serif;
  display: block;
}

.authorbio {
  font-family: Poppins, sans-serif;
}

.authorbio p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 29px;
}

.author-links {
  opacity: .7;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  padding: 1px 0;
  transition: opacity .4s;
}

.author-links:hover {
  opacity: 1;
}

.social-wrapper {
  margin-bottom: 8px;
}

.hero-header {
  color: #fff;
  margin-bottom: 10px;
  font-family: Biryani, sans-serif;
  font-size: 50px;
  font-weight: 400;
}

.blog-thumbnail {
  margin-bottom: 13px;
  padding: 6px 12px;
}

.footer-logo {
  text-decoration: none;
}

.smallest-divider {
  background-color: #dedede;
  width: 50px;
  height: 2px;
  margin: 10px auto;
  display: block;
}

.author-bio {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  display: block;
}

.author-bio p {
  font-size: 13px;
  line-height: 21px;
}

.social-link {
  opacity: .82;
  width: 20px;
  margin-left: 5px;
  margin-right: 5px;
  transition: opacity .2s;
  display: inline-block;
}

.social-link:hover {
  opacity: .45;
}

.blog-post {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  display: block;
}

.featuredthumbnail {
  padding-top: 7px;
  padding-bottom: 7px;
}

.nav-link {
  opacity: .7;
  color: #fff;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-family: Biryani, sans-serif;
  font-size: 12px;
  font-weight: 200;
  transition: opacity .2s, transform .2s;
  display: inline-block;
}

.nav-link:hover {
  opacity: 1;
  color: #fff;
  transform: translate(0, -2px);
}

.nav-link.w--current {
  opacity: 1;
  color: #fff;
}

.nav-link.button {
  font-weight: 900;
}

.full-divide {
  background-color: #dedede;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.author-photo {
  border-radius: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.social-icon {
  margin-top: 0;
  margin-bottom: 0;
}

.category-section {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 100px;
  padding-bottom: 9px;
}

.category-link {
  color: #768088;
  text-align: center;
  border-radius: 3px;
  margin-right: 1px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-family: Oxygen;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.category-link:hover {
  color: #243039;
  background-color: #f0f0f0;
}

.dark-overlay {
  z-index: 0;
  opacity: .23;
  height: 100%;
  text-shadow: none;
  background-color: #000;
  font-family: Oxygen;
  transition: background-color .4s;
  position: absolute;
  inset: 0;
}

.footer-links {
  text-align: right;
  font-family: Biryani, sans-serif;
  font-weight: 700;
}

.category-block {
  padding: 10px;
  text-decoration: none;
  display: block;
}

.category-thumbnail {
  background-image: linear-gradient(to bottom, #1da5c3, var(--brand-blue));
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 6px #00000063;
  object-fit: fill;
  object-position: 50% 50%;
  border: 1px solid #2430391a;
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  padding: 30px;
  font-size: 23px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.category-name {
  z-index: 10;
  float: none;
  clear: both;
  text-shadow: 1px 1px 6px #00000057;
  white-space: normal;
  object-position: 50% 50%;
  font-size: 25px;
  line-height: 34px;
  position: relative;
}

.hero-wrapper {
  z-index: 10;
  position: relative;
}

.contact-form {
  font-family: Poppins, sans-serif;
}

.field-label {
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.contact-field {
  border-radius: 2px;
  height: 50px;
  padding-bottom: 9px;
  font-family: Poppins, sans-serif;
}

.contact-field:focus {
  color: #243039;
  border: 1px solid #5cc489;
}

.contact-field.message {
  height: 150px;
}

.social-text {
  color: #243039;
  background-image: url('../images/social-18.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 26px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.success-message {
  color: #fff;
  background-color: #48aec5;
  border-radius: 3px;
  padding-top: 27px;
  box-shadow: 1px 1px 3px #0000005c;
}

.success-text {
  font-size: 16px;
}

.section-title {
  letter-spacing: 2px;
  margin-top: 60px;
  font-family: Biryani, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
}

.blog-post-title {
  margin-top: 30px;
  margin-bottom: 7px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.text-block {
  padding-top: 0;
  padding-bottom: 10px;
}

.rich-text-block-2 {
  object-fit: fill;
  display: none;
  position: static;
  overflow: visible;
}

.white-space-pre-wrap.copy-on-click {
  margin-top: 10px;
  font-family: Courier Prime, sans-serif;
}

.text-block-2 {
  border: 1px solid var(--dark-gray);
  background-color: var(--medium-aquamarine);
  direction: ltr;
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-weight: 700;
  display: none;
  box-shadow: -2px 2px 5px #0000003b;
}

.nav-subheadline {
  color: #fff;
  letter-spacing: -.05em;
  margin-top: 10px;
  font-family: Biryani, sans-serif;
  font-weight: 200;
}

.hero-link {
  color: #8447ff;
}

.hero-link:hover {
  color: #6215ff;
}

.body {
  background-color: #fff;
  font-family: Oxygen;
}

.tabs-menu {
  border-bottom: 2px solid var(--dark-gray);
  width: auto;
  height: auto;
  margin-bottom: 30px;
  padding-bottom: 0;
  font-family: Oxygen;
  font-size: 18px;
}

.text-block-4 {
  font-family: Oxygen;
  font-size: 18px;
}

.text-block-5 {
  font-size: 18px;
}

.tab-pane-tab-2 {
  border: 1px #000;
}

.heading {
  color: #fff;
  text-transform: none;
  background-color: #0000;
  font-family: Biryani, sans-serif;
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
}

.join-us-cta {
  display: inline-block;
}

.join-us-wrapper {
  text-align: center;
  padding-top: 20px;
}

.join-us-on-slack-button {
  border: 1px none var(--primary-brand-purple);
  background-color: var(--primary-brand-purple);
  color: #fff;
  border-radius: 10px;
  margin-left: 30px;
  padding: 10px 50px;
  font-family: Biryani, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 46px;
}

.join-us-on-slack-button:hover {
  color: #fff;
  background-color: #5c31b3;
}

.footer {
  background-color: var(--brand-blue);
}

.div-block-3 {
  font-family: Oxygen;
}

.author-name-quiet {
  color: var(--dark-slate-gray-2);
  font-family: Poppins, sans-serif;
}

.byline-plain {
  margin-right: 15px;
  display: inline;
}

.collection-list, .body-2 {
  font-family: Oxygen;
}

.body-3 {
  font-family: Poppins, sans-serif;
}

.body-4 {
  font-family: Oxygen;
}

.tab-link-tab-1 {
  border-radius: 10px 10px 0 0;
}

.tab-link-tab-1.w--current {
  border-radius: 10px 10px 0 0;
  font-weight: 700;
}

.tab-link-tab-2 {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 5px;
}

.tab-link-tab-2.w--current {
  font-weight: 700;
}

.container-3 {
  font-family: Oxygen;
}

.container-4 {
  padding-top: 50px;
}

.paragraph {
  font-size: 24px;
}

.empty-state {
  margin-top: 20px;
  padding-top: 24px;
  padding-left: 31px;
}

.paragraph-2 {
  font-family: Oxygen;
  font-size: 18px;
  line-height: 34px;
}

.error-message {
  text-align: center;
  background-color: #f5dbdb;
  border-radius: 3px;
  font-family: Oxygen;
  box-shadow: 1px 1px 3px #0000004f;
}

.image-2 {
  border: 1px solid #999;
  margin-top: 0;
}

.column-section-header {
  margin-top: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.grid {
  grid-template-rows: auto auto auto;
  grid-template-areas: "Area ."
                       "Area-3 Area-3"
                       "Area-2 .";
}

.primary {
  background-color: var(--brand-orange);
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.primary:hover {
  color: var(--dark-slate-gray-2);
  font-weight: 700;
}

.secondary-text-link {
  color: var(--brand-blue);
  text-align: center;
  font-family: Poppins, sans-serif;
}

.secondary-text-link:hover {
  color: var(--dark-slate-gray-2);
}

.paragraph-3 {
  margin-top: 30px;
  margin-bottom: -1px;
}

.list {
  font-family: Oxygen;
  list-style-type: decimal;
}

.list.big-numbers {
  letter-spacing: normal;
  font-family: Poppins, sans-serif;
}

.framed-image {
  border: 2px solid var(--dark-slate-gray-2);
}

.columns {
  margin-top: 0;
  padding-bottom: 10px;
}

.help-text {
  border: 2px solid var(--brand-orange);
  text-align: center;
  background-color: #0000;
  border-radius: 3px;
  margin-top: 25px;
  padding: 10px;
  box-shadow: 1px 1px 3px #00000052;
}

.big-quote {
  border-left-width: 10px;
  border-left-color: var(--brand-orange);
  margin-top: 10px;
  margin-bottom: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Biryani, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 37px;
}

.columns-2 {
  border-bottom: 1px #ccc;
  margin-bottom: 30px;
  padding-bottom: 16px;
}

.div-block-4 {
  position: relative;
}

.collection-list-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.header-function-name {
  border: 1px solid var(--brand-orange);
  background-color: var(--brand-orange);
  white-space: normal;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Courier Prime, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  position: relative;
}

.collection-list-wrapper-2, .collection-list-wrapper-3, .column, .heading-2 {
  font-family: Poppins, sans-serif;
}

.author-title {
  float: right;
  clear: none;
  flex-wrap: nowrap;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 7px;
  font-family: Courier Prime, sans-serif;
  display: block;
  position: relative;
}

.collection-list-wrapper-4 {
  font-family: Poppins, sans-serif;
}

.heading-3 {
  font-family: Biryani, sans-serif;
}

.footer-brand {
  color: var(--dark-slate-gray-2);
  font-family: Biryani, sans-serif;
}

.collection-list-wrapper-5 {
  font-family: Poppins, sans-serif;
}

.video {
  margin-top: 40px;
  margin-bottom: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.link {
  font-family: Poppins, sans-serif;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-section {
    padding: 40px 10px;
  }

  .preview-text {
    max-height: 40px;
    overflow: hidden;
  }

  .section-heading {
    text-align: center;
    display: block;
  }

  .footer-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-text {
    padding-top: 70px;
    position: absolute;
    inset: 0;
  }

  .featured-title {
    font-size: 23px;
  }

  .category-tag-2 {
    z-index: 10;
  }

  .featured-description {
    max-height: 55px;
    padding-right: 0;
    font-size: 17px;
    line-height: 23px;
    overflow: hidden;
  }

  .blog-thumbnail {
    width: 33.33%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .featuredthumbnail {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .category-block {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    height: 440px;
    padding-top: 162px;
  }

  .main-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-text {
    inset: auto 0 0;
  }

  .featured-title {
    font-size: 27px;
  }

  .featured-description {
    font-size: 18px;
  }

  .author-picture {
    width: 210px;
    margin-bottom: 6px;
    margin-right: 13px;
  }

  .authorbio {
    font-size: 14px;
    line-height: 17px;
  }

  .blog-thumbnail {
    width: 50%;
  }

  .featuredthumbnail {
    padding: 10px 0;
  }

  .about-image {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .success-message {
    color: #fff;
    background-color: #5cc489;
    padding-top: 28px;
    font-size: 18px;
  }

  .success-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-section {
    height: 430px;
    padding-top: 118px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .navbar {
    padding: 2px 15px 7px;
  }

  .menu-button {
    margin-top: 13px;
  }

  .long-text {
    margin-top: 0;
  }

  .hero-subheading {
    line-height: 27px;
  }

  .main-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .author-img, .section-heading {
    display: block;
  }

  .med-divider {
    width: 60%;
  }

  .form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .field {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 100%;
    margin-bottom: 5px;
  }

  .submit-button {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    width: 100%;
  }

  .footer-section {
    position: relative;
  }

  .footer-link {
    float: none;
    text-align: center;
    padding-left: 0;
    display: block;
  }

  .featured-text {
    padding: 0 15px 55px;
  }

  .featured-title {
    font-size: 18px;
  }

  .category-tag-2 {
    padding: 6px;
    top: 15px;
    left: 15px;
  }

  .featured-description {
    display: none;
  }

  .featured-details {
    padding-left: 15px;
    padding-right: 15px;
  }

  .inner-hero {
    height: 330px;
  }

  .author-picture {
    float: none;
    text-align: center;
    border-radius: 110px;
    width: 130px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .author-name-main {
    text-align: center;
    margin-top: 2px;
    font-size: 23px;
    line-height: 34px;
  }

  .authorbio {
    text-align: center;
    font-size: 14px;
  }

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

  .hero-header {
    font-size: 40px;
  }

  .blog-thumbnail {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .footer-logo, .footer-logo.w--current {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .blog-post {
    width: 95%;
  }

  .featuredthumbnail {
    padding: 5px 0;
  }

  .nav-link {
    opacity: .7;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 17px;
    display: block;
  }

  .nav-link.w--current {
    opacity: 1;
    color: #fff;
  }

  .logo {
    float: left;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    display: inline-block;
  }

  .nav-menu {
    background-color: #232f38eb;
    width: 100%;
    padding-top: 60px;
    display: block;
    position: absolute;
  }

  .close-x {
    color: #fff;
    text-transform: uppercase;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    font-size: 27px;
    text-decoration: none;
    display: block;
    position: absolute;
    top: 21px;
    left: 35px;
    right: 35px;
  }

  .success-text {
    line-height: 27px;
  }
}

#w-node-_6dd6b314-ad52-0a7e-ddc4-0aa3d6d8cc3e-b9ee9957, #copy-tutorial-link.w-node-_3b5cfec6-ebd9-b4b7-8f0c-0a45420f081f-b9ee9957 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#view-tutorial-link.w-node-_270da8d1-d1d5-7272-429d-2883d8e726e4-b9ee9957 {
  grid-area: Area-2;
}


