:root {
  --white: white;
  --black: var(--all-links);
  --all-links: #412d15;
  --button: #1f150c;
  --white-smoke: #f8f8f8;
  --black-charcoal: #222;
  --dim-grey: #727272;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.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 {
  background-color: var(--white);
  color: var(--black);
  cursor: default;
  flex-direction: column;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
}

h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1.333rem;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}

h6 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--all-links);
  text-decoration: underline;
  transition: all .2s;
}

ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

li {
  max-width: 40ch;
  margin-top: 4px;
  margin-bottom: 4px;
  line-height: 1.6;
}

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

label {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .75rem;
  line-height: 1;
  display: block;
}

blockquote {
  border-left: 5px solid var(--button);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 11px 20px;
  font-size: 1.5em;
  line-height: 1.3;
}

figure {
  margin: 20px auto;
}

figcaption {
  color: #828282;
  text-align: center;
  margin-top: 12px;
  font-size: 1em;
}

.navbar {
  z-index: 1000;
  background-color: var(--white);
  width: 100%;
  position: sticky;
  inset: 0% 0% auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.brand {
  padding-left: 0;
}

.brand.in-footer {
  margin-bottom: 20px;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-link {
  color: var(--black);
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--button);
  text-decoration: underline;
}

.nav-link.w--current {
  background-color: var(--all-links);
  color: var(--white-smoke);
  text-decoration: none;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--button);
  filter: brightness();
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  border-radius: 3px;
  padding: 16px 28px;
  font-weight: 600;
  line-height: 1;
  transition: all .3s;
}

.button:hover {
  transform: translate(0, -3px);
}

.button.in-navbar {
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .9rem;
}

.section {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.footer {
  background-color: var(--black);
  color: var(--white);
  margin-top: auto;
}

.section._404 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.black {
  background-color: var(--black);
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.grey {
  background-color: var(--white-smoke);
}

.section.img {
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  display: flex;
  position: relative;
}

.price-wrap {
  align-items: flex-end;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
}

.price {
  margin-right: 4px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.strikethrough {
  color: #828282;
  text-decoration: line-through;
}

.image-wrap {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  inset: 0% 0% auto auto;
}

.logos-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-content: center;
  place-items: center;
  display: grid;
}

._3-columns-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._3-columns-grid.bottom-margin-80px {
  margin-bottom: 80px;
}

._3-columns-grid.bottom-margin {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  color: #c4c4c4;
  border: 1px solid #444;
  border-radius: 10px;
  width: 100%;
  padding: 30px;
  display: flex;
}

.review-card-name {
  color: var(--white);
  margin-bottom: 2px;
  margin-right: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.review-card-name-wrap {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.revie-card-content {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.star-icon {
  flex: none;
  width: 20px;
  height: 20px;
}

.rating-wrap {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  font-size: .875rem;
  line-height: 1;
  display: flex;
}

.rating-wrap.in-hero {
  margin-bottom: 20px;
}

.paragraph-smaller {
  margin-bottom: 0;
  font-size: 1em;
}

.paragraph-smaller.font-color-grey {
  color: #828282;
}

.paragraph-smaller.font-color-light-grey {
  color: #c4c4c4;
}

.flex {
  display: flex;
}

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

.absolute-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.no-top-margin {
  margin-top: 0;
}

.no-top-margin.bottom-margin-8px {
  margin-bottom: 8px;
}

._2-column-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  width: 100%;
  display: grid;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 30px;
  display: flex;
  box-shadow: 0 1px 3px #0000001a;
}

.feature-icon {
  flex: none;
  width: 32px;
  margin-bottom: 20px;
}

.footer-wrap {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-links-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: start;
  display: grid;
}

.footer-link {
  color: #828282;
  font-size: .8rem;
  text-decoration: none;
}

.footer-link.underline {
  text-decoration: underline;
}

.footer-link.smaller {
  font-size: .8em;
}

.subheading {
  max-width: 40ch;
  margin-bottom: 24px;
}

.subheading.mid {
  font-weight: 300;
}

.style-guide-wrap {
  width: 100%;
  margin-top: 60px;
}

.style-guide-block {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  display: flex;
}

.label {
  margin-bottom: 12px;
}

.form-block {
  width: 100%;
}

.text-field {
  border: 1px solid var(--black);
  background-color: var(--white);
  width: 100%;
  min-height: 44px;
  color: var(--black);
  margin-bottom: 24px;
  padding: 12px 20px;
  transition: all .2s;
}

.text-field:hover {
  border-color: #c4c4c4;
}

.text-field:focus {
  border-color: var(--black);
}

.text-field::placeholder {
  color: #c4c4c4;
}

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

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.checkbox {
  border-color: #828282;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.checkbox:hover {
  border-color: var(--black);
}

.checkbox.w--redirected-checked {
  border-color: var(--button);
  background-color: var(--button);
}

.checkbox.w--redirected-focus {
  border-color: var(--button);
  box-shadow: 0 0 3px 1px var(--button);
}

.checkbox-label {
  margin-bottom: 0;
}

.radio-button-field {
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  line-height: 1.5;
  display: flex;
}

.radio-button {
  border-color: #828282;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
}

.radio-button:hover {
  border-color: var(--black);
}

.radio-button.w--redirected-checked {
  border-color: var(--button);
}

.radio-button.w--redirected-focus {
  border-color: var(--button);
  box-shadow: 0 0 3px 1px var(--button);
}

.radio-button-label {
  margin-bottom: 0;
}

.select-field {
  border: 1px solid var(--black-charcoal);
  background-color: var(--white);
  width: 100%;
  min-height: 44px;
  color: var(--black);
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all .2s;
}

.select-field:hover {
  border: 1px solid #c4c4c4;
}

.select-field:focus {
  border: 1px solid var(--black);
}

.success-message {
  background-color: var(--black-charcoal);
  color: var(--white);
  padding: 20px;
}

.error-message {
  color: var(--white);
  background-color: #ff0051;
  margin-top: 20px;
  padding: 12px 20px;
}

.image-box {
  z-index: 1;
  border-radius: 10px;
  flex: none;
  width: 100%;
  padding-top: 66.66%;
  position: relative;
  overflow: hidden;
  box-shadow: -7px 7px 30px #00000040;
}

.image-box.top-padding-100 {
  padding-top: 100%;
}

.image-box.dual {
  padding-top: 0%;
  display: flex;
}

.circle-image {
  max-width: 75%;
  position: absolute;
  inset: -10% 10% auto auto;
}

.dots-image {
  position: absolute;
}

.dots-image.bottom-left {
  inset: auto auto -5% -5%;
}

.dots-image.top-right {
  inset: -5% -5% auto auto;
}

.dots-image.top-right-2 {
  inset: 20% -10% auto auto;
}

.dots-image.bottom-left-2 {
  inset: auto auto 10% -10%;
}

.student-card {
  z-index: 2;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  box-shadow: 0 0 30px 0 #0000001a, inset 0 4px 0 0 var(--button);
  border-radius: 10px;
  padding: 20px;
  position: absolute;
  bottom: -10%;
  left: 10%;
}

.featured-in-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  display: grid;
}

.logo-image {
  width: 100%;
  max-width: 120px;
  max-height: 36px;
}

.centered-heading {
  text-align: center;
  width: 100%;
  max-width: 25ch;
  margin-top: 0;
  margin-bottom: 40px;
}

.text-column-wrap {
  flex: 1;
}

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

.slider {
  background-color: #0000;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.mask {
  background-color: var(--black-charcoal);
  border-radius: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.right-arrow {
  background-color: var(--black-charcoal);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px;
  transition: all .3s;
  display: flex;
  right: -80px;
}

.right-arrow:hover {
  background-color: #555;
}

.left-arrow {
  background-color: var(--black-charcoal);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 20px;
  transition: all .3s;
  display: flex;
  left: -80px;
}

.left-arrow:hover {
  background-color: #555;
}

.slide-nav {
  position: absolute;
  bottom: -80px;
}

.review-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  align-self: stretch;
  width: 60px;
  height: 60px;
}

.review-slide-contents {
  align-self: stretch;
  padding: 40px;
}

.review-author-wrap {
  border-top: 1px solid #444;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.slider-wrap {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 160px;
  position: relative;
}

.font-color-grey {
  color: #c4c4c4;
}

.slide {
  width: 100%;
  height: auto;
}

.faq-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
}

.faq-dropdown {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px #0000001a;
}

.dropdown-toggle {
  white-space: normal;
  width: 100%;
  padding: 30px 40px 30px 30px;
}

.dropdown-list {
  background-color: #0000;
  display: block;
  position: relative;
  overflow: hidden;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.dropdown-list-wrap {
  width: 100%;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: .875rem;
}

.logo-wrap-in-footer {
  color: #c4c4c4;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-right: 80px;
  font-size: .75em;
  display: flex;
}

.top-margin-auto {
  margin-top: auto;
}

.footer-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.social-links-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: center start;
  place-items: center start;
  margin-left: auto;
  display: grid;
}

.social-link {
  background-color: #fff;
  border-radius: 50%;
  flex: none;
  padding: 8px;
  line-height: 1;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-icon {
  flex: none;
  width: 20px;
  height: 20px;
}

.max-15ch {
  font-size: 2.5rem;
}

.max-15ch.hero {
  font-family: Inter, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
}

.max-18ch.no-gap {
  margin-top: 10px;
  margin-bottom: 0;
}

.rating-count {
  color: #ffd301;
  margin-right: 4px;
  font-size: 1.1rem;
  font-weight: 600;
}

.description {
  max-width: 40ch;
  color: var(--dim-grey);
  font-size: .875rem;
}

.review-author-div-in-slider {
  margin-left: 20px;
  margin-right: auto;
}

.rating {
  align-items: center;
  display: flex;
}

.instructor-stats {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.stats-wrap {
  align-items: center;
  font-size: .8rem;
  display: flex;
}

.stat-icon {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

.italic-text {
  font-size: 30px;
  font-style: italic;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10px;
  display: flex;
}

.designation {
  margin-bottom: 10px;
}

.heading {
  margin-bottom: 6px;
}

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

.youtube {
  height: 650px;
}

.heading-2 {
  text-align: center;
  margin-bottom: 100px;
  font-family: Montserrat, sans-serif;
  font-size: 4rem;
  font-weight: 800;
}

.div-block-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  display: grid;
}

.image-2 {
  max-width: 48%;
}

.rl_navbar1_logo-link {
  padding-left: 0;
}

.margin-bottom, .margin-bottom.margin-small, .margin-bottom.margin-medium, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.rl_testimonial17_testimonial-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.rl_testimonial17_testimonial-list.asedrfty {
  grid-template-columns: 1fr 1fr;
}

.rl_testimonial17_testimonial-list.asedrfty._3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.rl_navbar1_menu-button {
  padding: 0;
}

.faq2_question {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: flex;
}

.rl-padding-section-large-2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.asdfg {
  font-size: 1rem;
}

.footer3_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer3_credit-text {
  font-size: .875rem;
}

.rl_layout270_spacing-block-2 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.rl_navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.footer3_logo-link {
  float: none;
  padding-left: 0;
}

.rl_layout207_content.dc {
  grid-column-gap: 52px;
  grid-row-gap: 52px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rl_testimonial17_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-3 {
  border-radius: 5px;
  width: 100%;
}

.rl-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.rl_heading1_spacing-block-1 {
  width: 100%;
  padding-bottom: 1.5rem;
}

.text-block-8 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

.footer3_details-wrapper {
  margin-top: 20px;
}

.footer3_component {
  padding-bottom: 100px;
}

.rl-heading-style-h2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.div-block-4 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.rl-padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.rl-padding-section-large.hero {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.full {
  max-width: none;
}

.h1-large {
  text-align: center;
  font-size: 10rem;
  line-height: 8rem;
}

.rl_navbar1_component {
  background-color: #fff8ef;
  border-bottom: 1px #000;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.faq2_accordion {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer3_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.div-block-13 {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  display: flex;
}

.faq2_list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  flex-flow: column;
  display: flex;
}

.rl_heading1_spacing-block-2 {
  width: 100%;
  padding-bottom: 2rem;
}

.rl-padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-15 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rl-text-style-medium-2 {
  color: #473729;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.rl_testimonial17_customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.faq2_answer {
  overflow: hidden;
}

.rl_navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.rl_header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.rl_testimonial17_rating-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.div-block-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.padding-bottom, .padding-bottom.padding-xxlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.rl-button {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  color: #fff8ef;
  text-align: center;
  background-color: #25d366;
  border: 1px #000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .75rem 2rem .75rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
}

.footer3_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.rl-container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.topic-heading {
  font-weight: 400;
}

.rl_navbar1_button {
  color: #fff;
  text-align: center;
  background-color: #473729;
  border: 1px solid #000;
  padding: .5rem 1.25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.rl_navbar1_button.cta {
  font-size: 2rem;
}

.padding-vertical, .padding-vertical.padding-xxlarge {
  padding-left: 0;
  padding-right: 0;
}

.text-size-small {
  font-size: .875rem;
}

.text-size-medium {
  font-size: 1.125rem;
}

.text-size-medium.text-weight-bold {
  font-size: 2rem;
  font-weight: 400;
}

.image-4 {
  filter: brightness(0%);
  width: 20px;
}

.rl-text-style-medium {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}

.rl-text-style-medium.mid {
  text-align: center;
  font-size: 1.5rem;
}

.footer3_menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.rl-text-style-regular-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer3_link {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.rl-padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.rl_testimonial17_testimonial {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #f6ebdd;
  border: 1px #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
}

.rl_layout207_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.div-block-10 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 20px;
  display: flex;
}

.button-container {
  z-index: 999999;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  padding: 10px 5%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.divider-horizontal {
  width: 100%;
}

.rl_testimonial17_name-text {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer3_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  padding-top: 10px;
  display: flex;
}

.div-block-12 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.rl_layout207_image-wrapper {
  display: flex;
}

.footer3_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.rl_testimonial17_rating-icon {
  color: #000;
  flex-direction: column;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.rl_navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.rl_testimonial17_customer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.rl-heading-style-h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}

.faq2_icon-wrapper {
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }

  .review-card-name-wrap {
    flex-direction: row;
    align-items: center;
  }

  .text-block-8 {
    font-size: 1.125rem;
  }

  .div-block-10 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  ul {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.6;
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .container.in-navbar {
    padding-right: 20px;
  }

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

  .nav-menu {
    background-color: var(--white);
    justify-content: flex-start;
    width: 100%;
    padding: 0 20px 40px;
    box-shadow: 0 10px 10px #00000080;
  }

  .button.in-navbar {
    margin-left: 0;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .logos-wrap {
    grid-auto-columns: 1fr;
  }

  ._3-columns-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .rating-wrap.in-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  ._2-column-grid, .feature-card, .footer-wrap {
    flex-direction: column;
  }

  .footer-links-wrap {
    width: 100%;
    margin-top: 80px;
  }

  .menu-button {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 16px;
  }

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

  .lottie-animation {
    width: 100%;
    height: 100%;
  }

  .circle-image {
    top: -5%;
  }

  .student-card {
    left: 0%;
  }

  .featured-in-wrap {
    flex-direction: column;
    grid-template-columns: .5fr 1fr;
  }

  .right-arrow {
    display: none;
    right: 0;
  }

  .left-arrow {
    display: none;
    left: 0;
  }

  .faq-wrap {
    order: -1;
  }

  .social-links-wrap {
    justify-content: center;
  }

  .rating {
    margin-bottom: 4px;
  }

  .rl_menu-icon_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .rl_testimonial17_testimonial-list {
    grid-template-columns: 1fr 1fr;
  }

  .rl_navbar1_menu-button.w--open {
    background-color: #0000;
  }

  .rl-padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .rl_navbar1_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .rl_navbar1_menu.is-page-height-tablet {
    height: 100vh;
    padding-bottom: 15rem;
  }

  .rl-heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .footer3_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .rl_header1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .rl_menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .rl_menu-icon_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .rl_menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .rl_layout207_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .rl_menu-icon_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .div-block-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-auto-flow: column;
    display: flex;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .rl_navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .rl-heading-style-h1 {
    font-size: 3.25rem;
  }
}

@media screen and (max-width: 767px) {
  .logos-wrap {
    grid-auto-columns: 1fr;
  }

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

  .review-card, .review-card-name-wrap {
    flex-direction: row;
  }

  .rating-wrap.in-hero {
    flex-direction: row;
    align-items: center;
  }

  .feature-card {
    flex-direction: row;
  }

  .feature-icon {
    margin-right: 20px;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .footer-links-wrap {
    grid-template-columns: auto 50%;
    grid-auto-flow: row;
    margin-top: 40px;
  }

  .student-card {
    width: auto;
    inset: auto auto 0% 0%;
  }

  .review-avatar {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .social-links-wrap {
    margin-left: 0;
  }

  .rating {
    margin-bottom: 0;
  }

  .rl_navbar1_logo-link {
    padding-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .rl_testimonial17_testimonial-list {
    grid-template-columns: 1fr;
  }

  .faq2_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .rl-padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .footer3_credit-text {
    margin-top: 2rem;
  }

  .rl_layout270_spacing-block-2, .rl_heading1_spacing-block-1 {
    padding-bottom: 1.25rem;
  }

  .rl-heading-style-h2 {
    font-size: 2.25rem;
  }

  .rl-padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .rl_navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .footer3_top-wrapper {
    grid-row-gap: 3rem;
  }

  .rl_heading1_spacing-block-2 {
    padding-bottom: 1.5rem;
  }

  .rl-text-style-medium-2 {
    font-size: 1rem;
  }

  .rl_header1_component {
    grid-row-gap: 3rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .text-size-medium, .rl-text-style-medium {
    font-size: 1rem;
  }

  .footer3_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .rl_testimonial17_testimonial {
    padding: 1.5rem;
  }

  .rl_layout207_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .rl_testimonial17_customer {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .rl-heading-style-h1 {
    font-size: 2.5rem;
  }

  .faq2_icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.25rem;
  }

  ul {
    padding-left: 0;
  }

  li {
    max-width: none;
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 15px;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
    display: block;
  }

  .container.in-navbar {
    padding-right: 4px;
  }

  .button {
    width: 100%;
    margin-top: 10px;
  }

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

  .section.black {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.img {
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .image-wrap {
    opacity: 1;
    padding: 0;
    position: relative;
  }

  .logos-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
  }

  ._3-columns-grid {
    grid-row-gap: 20px;
  }

  ._3-columns-grid.bottom-margin {
    margin-top: 20px;
  }

  .review-card-name {
    margin-bottom: 4px;
  }

  .review-card-name-wrap {
    flex-direction: column;
  }

  .rating-wrap.in-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .paragraph-smaller.font-color-grey {
    line-height: 1.4;
  }

  ._2-column-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse wrap-reverse;
    grid-auto-flow: column;
    display: flex;
  }

  ._2-column-grid.alternate {
    flex-flow: column;
  }

  .feature-card {
    padding: 25px 20px 20px;
  }

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

  .footer-links-wrap {
    grid-auto-columns: auto;
    display: grid;
  }

  .subheading {
    max-width: none;
    margin-bottom: 12px;
  }

  .subheading.mid {
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
  }

  .circle-image {
    display: none;
  }

  .student-card {
    bottom: -15%;
  }

  .review-avatar {
    align-self: center;
    width: 100px;
    height: 100px;
  }

  .review-author-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .faq-wrap {
    margin-top: 30px;
  }

  .dropdown-toggle {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .dropdown-list-wrap {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .max-15ch {
    max-width: none;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }

  .max-15ch.hero {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
  }

  .max-18ch {
    max-width: none;
    font-size: 1.3rem;
  }

  .max-18ch.mid {
    text-align: center;
  }

  .review-author-div-in-slider {
    margin-bottom: 12px;
    margin-left: 0;
  }

  .rating {
    margin-bottom: 4px;
  }

  .italic-text {
    font-size: 19px;
  }

  .list {
    padding-left: 5px;
  }

  .designation {
    font-size: 14px;
  }

  .div-block-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .youtube {
    height: 550px;
  }

  .heading-2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }

  .div-block-3 {
    flex-flow: column;
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .rl_testimonial17_testimonial-list.asedrfty, .rl_testimonial17_testimonial-list.asedrfty._3 {
    grid-template-columns: 1fr;
  }

  .faq2_question {
    padding-top: .5rem;
    padding-bottom: .25rem;
  }

  .rl_layout270_spacing-block-2 {
    padding-bottom: .5rem;
  }

  .rl_layout207_content.dc {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 5%;
  }

  .rl-container-large {
    max-width: none;
  }

  .text-block-8 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
    font-size: 4.4vw;
  }

  .rl-heading-style-h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .rl-padding-section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .h1-large {
    text-align: center;
    font-size: 14vw;
    font-weight: 900;
    line-height: 15vw;
  }

  .faq2_list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .rl-padding-global {
    padding-left: 0%;
    padding-right: 0%;
  }

  .rl-padding-global.hr {
    padding-left: 5%;
    padding-right: 5%;
  }

  .rl-text-style-medium-2 {
    color: #473729;
    font-size: 1.125rem;
  }

  .faq2_answer {
    width: 95vw;
    padding-right: 0;
  }

  .rl_navbar1_container {
    padding-top: 1rem;
  }

  .rl_header1_component, .div-block-14 {
    grid-template-columns: 1fr;
  }

  .rl_section_layout207 {
    padding-bottom: 10vh;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .rl-button {
    width: 100%;
    padding: 2.3vw 4vw 2.5vw;
    font-size: 1rem;
  }

  .topic-heading {
    color: #473729;
  }

  .rl_navbar1_button.cta {
    display: none;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .text-size-medium.text-weight-bold {
    font-family: Open Sans, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2rem;
  }

  .rl-text-style-medium {
    font-size: 1.0625rem;
    line-height: 1.4;
  }

  .rl-text-style-medium.mid {
    font-size: 1.25rem;
  }

  .footer3_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .rl-text-style-regular-2 {
    font-size: 1rem;
  }

  .rl_testimonial17_testimonial {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .rl_layout207_component {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem 2rem;
    display: flex;
    position: relative;
  }

  .rl_layout207_component.alt {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row-reverse wrap-reverse;
    justify-content: center;
    align-items: center;
  }

  .div-block-10 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    margin-top: 0;
    padding-bottom: 5px;
    padding-left: 0;
  }

  .text-block-9 {
    font-size: 5.5vw;
  }

  .button-container {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding-top: 10px;
  }

  .rl_layout207_image-wrapper {
    justify-content: center;
    align-items: center;
  }

  .rl_testimonial17_rating-icon {
    margin-bottom: 10px;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .rl_testimonial17_customer {
    margin-top: 10px;
  }

  .rl-heading-style-h1 {
    font-size: 1.7rem;
  }
}

#w-node-cba879e5-2068-a1f3-1f15-f8864caa36b0-83bff4eb {
  place-self: center start;
}

#w-node-_630878b2-637f-ab15-c8bf-c91cc66869f1-83bff4eb {
  align-self: start;
}

#w-node-c3010ed6-545b-32c5-daae-4c52f9f6fedc-83bff4eb, #w-node-_18096eac-96cc-1414-0ebb-fe8633391a2c-83bff4eb, #w-node-_86287cb8-7b5b-6cb0-5ff4-f50fee9f6e86-83bff4eb, #w-node-_818f9a90-c452-8223-45c8-0c5d5fd43186-83bff4eb, #w-node-f44ea6f9-0f6e-6975-6524-315343254ad6-83bff4eb {
  place-self: center;
}

#w-node-_88090bea-70ef-2a97-329d-ca9f759d87b5-83bff4eb {
  align-self: start;
}

#w-node-_2541e9f4-4be7-66a1-391a-f9b58f8aa6e4-83bff4eb {
  align-self: center;
}

#w-node-_1dbceb0e-1026-adfa-2d72-62c8c6a3de08-83bff4eb {
  justify-self: center;
}

#w-node-_02a4bd07-0813-12ff-28a7-7ebb60b59c23-9ea95ec4, #w-node-a0dda94d-fe16-2dd9-6bb6-151f46e9d3c6-9ea95ec4, #w-node-_7f2b054f-646a-b87d-8ebd-d065c5bbc02b-9ea95ec4, #w-node-_6e44cf80-771a-6164-97e7-9d644f4a7fc5-9ea95ec4, #w-node-_39c39d3f-4764-34a1-b075-87cab2b31af6-9ea95ec4, #w-node-_66a3e177-f18b-3ecc-3111-14bd850c2162-9ea95ec4, #w-node-_9d12afed-4dec-eb10-dc55-4fc210a9292c-83bff4ee, #w-node-_6d8c59df-2331-e2ed-1efa-11ca066b4710-83bff4ee, #w-node-_0618b6b5-465e-25da-8860-611dac3d826d-83bff4ee, #w-node-_37483ab6-0a2d-a2e4-0e5d-72466dc77fbd-83bff4ee, #w-node-d3a32ab3-bd88-6281-ace7-a9cf076fff90-83bff4ee, #w-node-ff737f50-2685-bd8c-9fe3-202c5e7581b2-83bff4ee, #w-node-f5684f73-7a21-5986-3a25-baff1b8030fe-83bff4ee, #w-node-_67d46483-d595-61d8-9ed6-316149d285e7-83bff4ee, #w-node-_8946a6bb-c093-1113-afeb-98a1d8604244-83bff4ee, #w-node-_769cdf55-3fe7-0311-3261-7f0083172052-83bff4ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d3680d-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36828-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d3683b-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36852-a507379e {
  justify-self: start;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36860-a507379e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d3687a-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36891-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d368a8-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d368dd-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d368fc-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36917-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36932-a507379e {
  justify-self: start;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d3693f-a507379e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36959-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36970-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36987-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d369bd-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d369d8-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d369ef-a507379e {
  justify-self: start;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d369fd-a507379e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36a17-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36a32-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36a49-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36a60-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36a94-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36aac-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36ac3-a507379e {
  justify-self: start;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36ad5-a507379e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36aef-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36b06-a507379e, #w-node-efdd5ff4-201e-39c1-aa6b-202404d36b1d-a507379e {
  justify-self: start;
}

#w-node-efdd5ff4-201e-39c1-aa6b-202404d36ba9-a507379e {
  justify-self: end;
}

@media screen and (min-width: 1280px) {
  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_630878b2-637f-ab15-c8bf-c91cc66869f1-83bff4eb, #w-node-c3010ed6-545b-32c5-daae-4c52f9f6fee8-83bff4eb, #w-node-_6ba2964e-be9d-19fe-f822-1bd4b99c9716-83bff4eb, #w-node-_86287cb8-7b5b-6cb0-5ff4-f50fee9f6e81-83bff4eb, #w-node-_818f9a90-c452-8223-45c8-0c5d5fd43181-83bff4eb, #w-node-f44ea6f9-0f6e-6975-6524-315343254ae2-83bff4eb, #w-node-_1dbceb0e-1026-adfa-2d72-62c8c6a3de14-83bff4eb {
    align-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-cba879e5-2068-a1f3-1f15-f8864caa36b0-83bff4eb, #w-node-_630878b2-637f-ab15-c8bf-c91cc66869f1-83bff4eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c3010ed6-545b-32c5-daae-4c52f9f6fedc-83bff4eb {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-c3010ed6-545b-32c5-daae-4c52f9f6fee8-83bff4eb, #w-node-_6ba2964e-be9d-19fe-f822-1bd4b99c9716-83bff4eb, #w-node-_18096eac-96cc-1414-0ebb-fe8633391a2c-83bff4eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_86287cb8-7b5b-6cb0-5ff4-f50fee9f6e86-83bff4eb {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_86287cb8-7b5b-6cb0-5ff4-f50fee9f6e81-83bff4eb, #w-node-_818f9a90-c452-8223-45c8-0c5d5fd43181-83bff4eb, #w-node-_818f9a90-c452-8223-45c8-0c5d5fd43186-83bff4eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f44ea6f9-0f6e-6975-6524-315343254ad6-83bff4eb {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-f44ea6f9-0f6e-6975-6524-315343254ae2-83bff4eb, #w-node-_88090bea-70ef-2a97-329d-ca9f759d87b5-83bff4eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2541e9f4-4be7-66a1-391a-f9b58f8aa6e4-83bff4eb, #w-node-_1dbceb0e-1026-adfa-2d72-62c8c6a3de08-83bff4eb {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1dbceb0e-1026-adfa-2d72-62c8c6a3de14-83bff4eb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6e44cf80-771a-6164-97e7-9d644f4a7fc5-9ea95ec4 {
    grid-column: span 2 / span 2;
  }

  #w-node-c7ee41fd-2729-26df-c386-96ac5dd6c565-9ea95ec4 {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: start;
  }
}


