/*
Theme Name: Astra Child
Template: astra
Text Domain: astra-child
*/

:root {
  --exp-orange: #ff5b0a;
  --exp-black: #222;
  --exp-page: #f3f3f3;
  --exp-muted: #777;
  --exp-border: #d8d8d8;
  --exp-text: #333;
  --exp-font: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--exp-font);
}

body {
  background: var(--exp-page);
  color: var(--exp-text);
  font-size: 14px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--exp-orange);
}

.ast-container,
.site-content .ast-container {
  display: block;
  max-width: none;
  padding: 0;
}

.ast-separate-container #primary,
.site-main,
.ast-plain-container.ast-no-sidebar #primary {
  margin: 0 !important;
  padding: 0 !important;
}

.exp-site-header {
  background: var(--exp-black);
}

.exp-hero {
  align-items: center;
  background: var(--exp-hero-image) center center / cover no-repeat;
  display: flex;
  min-height: 322px;
  position: relative;
}

.exp-hero::before {
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
  content: "";
  inset: 0;
  position: absolute;
}

.exp-hero__inner {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

.exp-hero__title {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.exp-nav {
  align-items: stretch;
  background: var(--exp-black);
  display: flex;
  min-height: 41px;
  width: 100%;
}

.exp-nav__brand,
.exp-nav__link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  min-height: 41px;
  padding: 0 14px;
}

.exp-nav__brand {
  font-size: 16px;
  font-weight: 700;
}

.exp-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.exp-nav__list--main {
  flex: 1;
}

.exp-nav__item {
  display: flex;
}

.exp-nav__item--accent .exp-nav__link {
  background: var(--exp-orange);
}

.exp-nav__item--accent .exp-nav__link:hover,
.exp-nav__item--accent .exp-nav__link:focus {
  background: #e54900;
  color: #fff;
}

.exp-main {
  background: var(--exp-page);
}

.exp-activities {
  padding: 18px 14px 42px;
}

.exp-activities__grid {
  display: grid;
  gap: 12px 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1510px;
}

.exp-activity-card {
  margin: 0;
  overflow: hidden;
}

.exp-activity-card__link {
  background: #e9e9e9;
  display: block;
  overflow: hidden;
  position: relative;
}

.exp-activity-card__image {
  aspect-ratio: 1.76 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.exp-activity-card__overlay {
  align-items: flex-start;
  background: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.exp-activity-card__link:hover .exp-activity-card__overlay,
.exp-activity-card__link:focus .exp-activity-card__overlay {
  opacity: 1;
  transform: translateY(-100%);
}

.exp-activity-card__title {
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.2;
}

.exp-activity-card__read-more {
 align-items: center;
    background: #cbd300;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    line-height: 1;
    margin-top: 12px;
     padding: 6px;
    text-transform: lowercase;
}

.exp-activity-card__read-more::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  width: 10px;
}

.exp-activity-card__read-more::after {
    background: currentColor;
    content: "";
    display: block;
    height: 3px;
    margin-left: -4px;
    margin-top: 12px;
    transform: rotate(45deg);
    width: 5px;
    left: 27px;
    position: absolute;

}

.exp-footer {
  background: var(--exp-page);
  padding: 0 14px 22px;
}

.exp-footer__inner {
  border-top: 1px solid var(--exp-border);
  display: grid;
  gap: 38px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0 auto;
  max-width: 1075px;
  padding-top: 28px;
}

.exp-footer__column {
  color: var(--exp-text);
}

.exp-footer__copyright,
.exp-footer__links {
  font-size: 14px;
  margin: 0;
}

.exp-footer__logo {
  display: block;
  height: auto;
  margin-top: 16px;
  width: 97px;
}

.exp-footer__title {
  color: var(--exp-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}

.exp-footer__links {
  list-style: none;
  padding: 0;
}

.exp-footer__links li + li {
  margin-top: 4px;
}

.exp-footer__links a {
  color: var(--exp-orange);
}

.exp-footer__links a:hover,
.exp-footer__links a:focus {
  color: #c93b00;
}

.exp-page-main {
  background: var(--exp-page);
}

.exp-page {
  margin: 0 auto;
  max-width: 914px;
  padding: 22px 0 34px;
}

.exp-page__title {
  border-bottom: 1px solid var(--exp-border);
  color: #2d2d2d;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 17px;
  padding-bottom: 12px;
}

.exp-page__video {
  background: #111;
  height: 500px;
  margin-bottom: 16px;
  overflow: hidden;
  width: 100%;
}

.exp-page__video iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.exp-page__intro,
.exp-page__more {
  color: #222;
  font-size: 14px;
  margin: 0 0 12px;
}

.exp-page__more {
  margin: 17px 0 38px;
}

.exp-page__more a {
  color: var(--exp-orange);
}

.exp-signup-frame {
  background:
    repeating-linear-gradient(
      45deg,
      #edf5ff 0,
      #edf5ff 4px,
      #f6fbff 4px,
      #f6fbff 8px
    );
	max-height:500px;
  overflow-y: scroll;
	overflow-x:hidden;
  padding: 10px 20px 0;
  width: 100%;
	max-width:760px;
}

.exp-signup-frame__paper {
  background: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 44px 36px 0;
}

.exp-signup-frame__paper h2 {
  color: #555;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 8px;
}

.exp-signup-frame__paper p {
  color: #777;
  font-size: 13px;
  line-height: 1.25;
  margin: 0 0 13px;
}

.exp-signup-frame__paper .exp-signup-frame__required {
  color: #c31414;
  margin-bottom: 34px;
}

.exp-signup-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
}

.exp-signup-form label {
  color: #444;
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
 }

.exp-signup-form em {
  color: #d13b1f;
  font-style: normal;
}

.exp-signup-form input,
.exp-signup-form select,
.exp-signup-form textarea {
  background: #fff;
  border: 1px solid #c9c9c9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  display: block;
  margin-top: 5px;
  padding: 3px 5px;
}
.exp-signup-form textarea {height:136px;max-width:450px}
.exp-ticket-scale{
	max-width:450px
}
.exp-signup-form input,
.exp-signup-form select {
  height: 26px;
  width: 138px;
}

.exp-signup-form select {
  font-size: 16px;
  padding-right: 28px;
}

.exp-signup-form__wide,
.exp-signup-form .exp-signup-form__comments {
   width: min(920px, 100%);
}

.exp-signup-form__wide span,
.exp-signup-form__comments span,
.exp-ticket-scale legend {
  color: #555;
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 8px;
}

.exp-signup-form__wide input {
  height: 56px;
  width: 305px;
}

.exp-ticket-scale {
  border: 0;
   padding: 0;
 }

.exp-ticket-scale legend {
  margin-bottom: 24px;
  padding: 0;
	font-size:12px;
}

.exp-ticket-scale__numbers,
.exp-ticket-scale__radios {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(11, 28px);
  padding: 0 12px;
}

.exp-ticket-scale__numbers {
  border-bottom: 1px solid #d4d4d4;
  color: #555;
  font-size: 16px;
  line-height: 1;
  padding-bottom: 12px;
  text-align: center;
}

.exp-ticket-scale__radios {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 17px;
  padding-top: 19px;
}

.exp-ticket-scale__radios label {
  align-items: center;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.exp-ticket-scale__radios input {
  appearance: none;
  border: 2px solid #777;
  border-radius: 50%;
  box-shadow: none;
  height: 26px;
  margin: 0;
  padding: 0;
  width: 26px;
}

.exp-ticket-scale__radios input:checked {
  background: radial-gradient(circle, #777 0 36%, transparent 39%);
}

.exp-signup-form__comments textarea {
  height: 274px;
  resize: vertical;
  width: min(905px, 100%);
}

.exp-signup-form__submit {
  background: #4285f4;
  border: 1px solid #2f6fdf;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 23px;
  font-weight: 700;
  height: 57px;
  line-height: 1;
   width: 140px;
}

.exp-signup-form__submit:hover,
.exp-signup-form__submit:focus {
  background: #2f6fdf;
  color: #fff;
}

.exp-signup-form .exp-signup-form__notice {
 
  margin: 0 0 50px;
}

.exp-google-form-footer {
  border-top: 1px solid #d8d8d8;
  color: #777;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1fr);
  margin: 0 -36px;
  padding: 68px 78px 86px;
}

.exp-google-form-footer p {
  color: #777;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.exp-google-form-footer__logo {
  color: #777;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  position: relative;
}

.exp-google-form-footer__logo::before {
  background: #0f9d58;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 38px;
  margin-right: 10px;
  width: 34px;
}

.exp-google-form-footer a {
  color: #00f;
}

.exp-about {
  color: #222;
  font-size: 16px;
  line-height: 1.55;
  max-width: 1000px;
  padding-bottom: 22px;
}

.exp-about p {
  margin: 0 0 12px;
}

.exp-about a {
  color: var(--exp-orange);
}

.exp-about__section {
  clear: both;
  margin-bottom: 34px;
}

.exp-about__heading {
  border-bottom: 1px solid var(--exp-border);
  color: #2d2d2d;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0;
  padding-bottom: 8px;
}

.exp-about-founders {
  min-height: 246px;
}

.exp-about-founders__image {
  border-radius: 50%;
  float: right;
  height: 225px;
  margin: 10px 4px 20px 34px;
  object-fit: cover;
  width: 300px;
}

.exp-benefits {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exp-benefit img {
  display: block;
  height: 128px;
  margin: 0 0 12px;
  object-fit: contain;
  object-position: left center;
  width: 153px;
}

.exp-benefit h3 {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 10px;
}

.exp-benefit p {
  margin: 0;
}

.exp-about__wide-image {
  border: 1px solid #d8d8d8;
  display: block;
  height: auto;
  margin-top: 12px;
   object-fit: cover;
  object-position: top center;
  width: 100%;
}

.exp-testimonials blockquote {
  border-left: 1px solid #e0e0e0;
  color: #666;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px 32px;
  padding: 10px 0 10px 18px;
}

.exp-testimonials blockquote p {
  margin: 0;
}

.exp-testimonials cite {
  color: #333;
  display: block;
  font-size: 12px;
  font-style: italic;
}

.exp-testimonials cite::before {
  content: "\2014  ";
}

.exp-terms {
  max-width: 914px;
}

.exp-terms__updated {
  background: #fff;
  border: 1px solid #ddd;
  color: #111;
  font-size: 14px;
  line-height: 1.35;
  margin: 62px 0 0;
  padding: 16px 10px;
  width: min(720px, 100%);
}

.exp-terms__box {
  background: #fff;
  border: 1px solid #ddd;
  width: min(738px, 100%);
}

.exp-terms__section {
  display: grid;
  gap: 18px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding: 12px 10px 8px;
}

.exp-terms__section:nth-child(even) {
  background: #fff8f1;
}

.exp-terms__number {
  color: #111;
  font-size: 12px;
  line-height: 1.4;
}

.exp-terms__content h2 {
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}

.exp-terms__items {
  border: 1px solid #ddd;
}

.exp-terms__item {
  display: grid;
  gap: 18px;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 10px 9px;
}

.exp-terms__item:nth-child(even) {
  background: #fff8f1;
}

.exp-terms__item span,
.exp-terms__item p {
  color: #111;
  font-size: 12px;
  line-height: 1.45;
}

.exp-terms__item p {
  margin: 0;
  text-align: justify;
}

.exp-single-main {
  padding: 24px 16px 70px;
}

.exp-single {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 600px) 286px;
  margin: 0 auto;
  max-width: 914px;
}

.exp-single__header h1 {
  color: #2d2d2d;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}

.exp-single__header p {
  color: #222;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 16px;
}

.exp-single__hero {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  margin: 0 0 32px;
  padding: 18px;
}

.exp-single__hero img {
  display: block;
  height: auto;
  width: 100%;
}

.exp-single__body {
  color: #222;
  font-size: 16px;
  line-height: 1.45;
}

.exp-single__body p {
  margin: 0 0 24px;
}

.exp-single__body a {
  color: var(--exp-orange);
}

.exp-highlights .exp-single__body h2 {
  color: var(--exp-orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 24px;
}

.exp-single__body img {
  display: block;
  height: auto;
  margin: 28px 0 10px;
  width: 100%;
}

.exp-single__body ul {
  margin: 0 0 24px 20px;
  padding: 0;
}

.exp-single__body li {
  margin-bottom: 8px;
}

.exp-single__video {
  margin: 0 0 24px;
}

.exp-single__video iframe {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  max-width: 100%;
  width: 560px;
}

.exp-single__sidebar {
  padding-top: 34px;
}

.exp-single-box {
  border-bottom: 1px solid var(--exp-border);
  margin-bottom: 20px;
  padding: 0 10px 20px;
}

.exp-single-box h2 {
  align-items: center;
  color: #222;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.exp-single-box h2 span {
  font-size: 22px;
  line-height: 1;
}

.exp-single-box table {
  border-collapse: collapse;
  font-size: 13px;
  width: 230px;
}

.exp-single-box td {
  background: #fff;
  border: 1px solid #ddd;
  padding: 9px;
}

.exp-single-box tr:nth-child(even) td {
  background: #fff8f1;
}

.exp-single-box td:last-child {
  text-align: right;
}

.exp-single-recs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.exp-single-recs li + li {
  margin-top: 12px;
}

.exp-single-recs a {
  align-items: center;
  color: var(--exp-orange);
  display: grid;
  gap: 8px;
  grid-template-columns: 100px minmax(0, 1fr);
  font-size: 12px;
  line-height: 1.25;
}

.exp-single-recs img {
  background: #fff;
  border: 1px solid #ddd;
  display: block;
  height: 74px;
  object-fit: cover;
  padding: 3px;
  width: 100px;
}

.exp-auth-main {
  min-height: 386px;
  padding: 20px 16px 36px;
}

.exp-auth-panel {
  background: #fff;
  border: 1px solid #dedede;
  margin: 0 auto;
  max-width: 580px;
  padding: 16px 18px;
}

.exp-auth-panel h1 {
  color: #3a3a3a;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
}

.exp-auth-panel__top {
  align-items: flex-start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 102px;
  margin-bottom: 8px;
}

.exp-auth-panel__top p {
  color: #222;
  font-size: 14px;
  margin: 0;
}

.exp-auth-panel a {
  color: var(--exp-orange);
}

.exp-facebook-button {
  align-items: center;
  background: #3f5c9a;
  border-radius: 2px;
  color: #fff !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  padding: 0 12px;
}

.exp-facebook-button span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.exp-login-form__field {
  border-bottom: 1px solid #d9d9d9;
  display: block;
  margin: 0;
  padding: 10px 0 11px 18px;
}

.exp-login-form__field span {
  color: #999;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.exp-login-form__field input {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  font-size: 16px;
  height: 28px;
  outline: none;
  padding: 0;
  width: 100%;
}

.exp-login-form__remember {
  align-items: center;
  display: flex;
  gap: 6px;
  margin: 22px 0 8px;
}

.exp-login-form__remember input {
  height: 12px;
  margin: 0;
  width: 12px;
}

.exp-login-form__remember label {
  color: #333;
  font-size: 12px;
  line-height: 1;
}

.exp-login-form__bottom {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.exp-login-form__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exp-login-form__links a {
  color: var(--exp-orange);
  font-size: 14px;
  line-height: 1.25;
}

.exp-login-form__submit {
  background: var(--exp-orange);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  height: 49px;
  min-width: 116px;
  padding: 0 18px;
}

.exp-login-form__submit:hover,
.exp-login-form__submit:focus {
  background: #e54900;
  color: #fff;
} 
.exp-register-form__bottom {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 34px;
}

.exp-register-form__copy {
  color: #333;
  font-size: 16px;
  line-height: 1.4;
}

.exp-register-form__copy p {
  margin: 0 0 18px;
}

.exp-register-form__copy a {
  color: var(--exp-orange);
}

.exp-register-form__submit {
  min-width: 116px;
}

.exp-auth-main--password {
  min-height: 504px;
  padding: 34px 16px 66px;
}

.exp-auth-panel--password {
  max-width: 645px;
   padding: 1.25rem;
} 

.exp-password-form__field {
  border-bottom: 0;
  margin-left: 0;
  max-width: 430px;
 } 

.exp-password-form__bottom {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 2px;
}

.exp-password-form__bottom a {
  color: var(--exp-orange);
  font-size: 16px;
  line-height: 1.2;
}

.exp-password-form__submit {
  background: var(--exp-orange);
  white-space: nowrap;
}

.exp-password-form__submit:hover,
.exp-password-form__submit:focus {
  background: #e54900;
  color: #fff;
}

@media (max-width: 900px) {
  .exp-activities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exp-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exp-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exp-signup-frame {
    max-width: 100%;
  }

  .exp-signup-form__wide span,
  .exp-signup-form__comments span,
  .exp-ticket-scale legend {
    font-size: 22px;
  }

  .exp-google-form-footer {
    grid-template-columns: 1fr;
    padding: 42px 36px 54px;
  }

  .exp-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exp-auth-panel--password h1 {
    font-size: 38px;
  }

  .exp-password-form__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .exp-password-form__bottom a {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .exp-hero {
    min-height: 230px;
  }

  .exp-nav {
    flex-wrap: wrap;
  }

  .exp-nav__brand {
    flex: 1 0 100%;
  }

  .exp-nav__list--main,
  .exp-nav__list--account {
    flex: 1 0 100%;
  }

  .exp-nav__list {
    overflow-x: auto;
  }

  .exp-nav__link {
    white-space: nowrap;
  }

  .exp-activities {
    padding: 12px 10px 30px;
  }

  .exp-activities__grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .exp-footer__inner {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .exp-page {
    padding-top: 18px;
  }

  .exp-page__video {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .exp-signup-frame {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .exp-signup-frame__paper {
    padding: 28px 24px;
  }

  .exp-signup-frame__paper h2 {
    font-size: 25px;
  }

  .exp-signup-form__wide input {
    width: 100%;
  }

  .exp-ticket-scale {
    overflow-x: auto;
  }

  .exp-signup-form__comments textarea {
    height: 220px;
  }

  .exp-signup-form .exp-signup-form__notice {
    font-size: 20px;
  }

  .exp-google-form-footer p {
    font-size: 18px;
  }

  .exp-about {
    font-size: 15px;
  }

  .exp-about__heading {
    font-size: 24px;
  }

  .exp-about-founders__image {
    float: none;
    margin: 12px 0 18px;
    max-width: 100%;
  }

  .exp-benefits {
    grid-template-columns: 1fr;
  }

  .exp-testimonials blockquote {
    margin-left: 0;
  }

  .exp-terms__updated,
  .exp-terms__box {
    width: 100%;
  }

  .exp-terms__section {
    gap: 12px;
  }

  .exp-single {
    grid-template-columns: 1fr;
  }

  .exp-single__hero {
    margin-bottom: 36px;
  }

  .exp-single__sidebar {
    padding-top: 0;
  }

  .exp-auth-panel__top,
  .exp-login-form__bottom {
    grid-template-columns: 1fr;
  }

  .exp-auth-panel__top {
    display: flex;
    flex-direction: column;
  }

  .exp-login-form__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .exp-register-form__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .exp-auth-panel--password {
    min-height: 0;
    padding: 24px 20px 34px;
  }

  .exp-auth-panel--password h1 {
    font-size: 32px;
  }

  .exp-password-form__field span {
    font-size: 24px;
  }

  .exp-password-form__bottom a {
    font-size: 18px;
  }

  .exp-password-form__submit {
    font-size: 22px;
    height: 64px;
    min-width: 220px;
  }
}
