*, ::after, ::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --textColor: #111111;
  --textColorAA: #111111AA;
  --textColor50: #11111150;
  --bgColor: #FFFFFF;
  --veryDarkG: #013300;
  --darkG: #015200;
  --lightG: #029900;
  --fadeDarkG: #01520015;
  --fadeLightG: #02990030;
  --fadeLighterG: #02990020;
  --fadeLightestG: #02990008;
  --lighterG: #0CBA0A;
  --lightestG: #02B800;
  --brightG: #18FF15;
  --paleG: #E6FDE9;
  --footerG: #E6FDE9;
  --error: #f3e2e2;
  --required: #d40000;
  --invalidBg: #FADFDF;
  --red: #d50101;
  --recommended: #e6bc41;
  --white: #FFFFFF;
  --autofill: #F9F9F9;
  --loadingGrey: #888;
  --lightGrey: #11111130;
  --lighterGrey: #11111120;
  --lightestGrey: #11111110;
  --signupModalWidth: 660px;
  --backToSignupLinkBright: #e90dc1;
}

ul {
  list-style: none;
}

body {
  color: var(--textColor);
  background: var(--bgColor);
}

input, body {
  font-family: "Chillax", sans-serif;
}

button, input[type=submit] {
  font-family: "Chillax", sans-serif;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}

input, button {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

button {
  color: var(--textColor);
}

*::selection {
  color: var(--darkG);
  background: #f7d288;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  text-align: center;
}

.dn {
  display: none !important;
}

h1 {
  color: var(--darkG);
  line-height: 110%;
  margin: 4vh 0;
}

h2 {
  font-size: clamp(30px, 4.5vw, 70px);
  margin-bottom: 3vh;
  line-height: 1.2;
}

p {
  text-align: justify;
  line-height: 1.5;
  font-size: clamp(18px, 1.3vw, 30px);
  margin-bottom: 24px;
}

#slide1 h2,
#slide2 h3,
#slide3 h3 {
  color: var(--lighterG);
  margin-bottom: 4.5vh;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 40px);
  width: 80vw;
}

h1,
#slide2 h2,
#slide3 h2 {
  color: var(--darkG);
  font-size: clamp(30px, 6vw, 100px);
  line-height: 110%;
  margin: 4vh 0;
  width: 85vw;
}

#footer-logo,
.slider-logo {
  fill: var(--darkG);
  height: 100px;
}

.slider-logo {
  width: clamp(250px, 30vw, 380px);
  height: auto;
}

#footer-logo {
  height: 90px;
}

.footer-btn {
  color: unset;
}

.success {
  color: var(--lightG);
  background: var(--bgColor);
  padding: 12px 12px 4px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

#banner {
  height: auto;
  position: relative;
  padding: 0;
}

section {
  padding: 8vw;
}

#slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#slider {
  height: 100%;
  z-index: 1;
  position: relative;
  width: fit-content;
  display: flex;
  gap: 0;
}

.smoothTransition {
  transition: transform 1s cubic-bezier(0.5, 0, 0.35, 1);
}

.slide {
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 10vh 0;
}

.slider-control {
  z-index: 2;
  position: relative;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

#control-right {
  right: 0;
  width: fit-content;
}

#control-left {
  width: fit-content;
  left: 0;
}

#slide1 {
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide1.jpg");
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}

@supports (background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide1.webp")) {
  #slide1 {
    background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide1.webp");
  }
}
#slide2 {
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide2.jpg");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}

@supports (background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide2.webp")) {
  #slide2 {
    background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide2.webp");
  }
}
#slide3 {
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide3.jpg");
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
}

@supports (background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide3.webp")) {
  #slide3 {
    background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0), #FFFFFF 35%), url("../img/slide3.webp");
  }
}
.slider-control:disabled {
  opacity: 0.2;
  pointer-events: none;
}

.slider-control {
  stroke-width: 2px;
  stroke-linecap: round;
  stroke: var(--darkG);
  stroke-linejoin: round;
  -webkit-text-stroke-color: var(--darkG);
}

.actions {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
}

button, input[type=submit] {
  width: 300px;
  height: 50px;
  border-radius: 30px;
  font-size: 1.05em;
}

.primary-btn, input[type=submit].primary-btn {
  background: var(--darkG);
  color: white;
}

.secondary-btn {
  background: var(--white);
  color: var(--darkG);
  border: 1px solid var(--darkG);
}

input[type=submit].primary-btn:disabled {
  opacity: 0.2;
  pointer-events: none;
}

input[type=submit].primary-btn:disabled:hover {
  background: unset;
}

.primary-btn,
.secondary-btn {
  transition: background-color 0.15s linear, color 0.25s linear;
}

.primary-btn:not(.primary-btn.loading):hover,
.secondary-btn:hover {
  color: var(--white);
  background: var(--lightG);
}

.secondary-btn:hover {
  border-color: transparent;
}

#natural-healing {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  background: no-repeat url(../svg/ilogo-bg-green.svg);
  background-position: center;
  background-size: contain;
}

#home-remedies h2,
#marketplace h2 {
  text-align: left;
}

#home-remedies .left {
  width: 50%;
  margin-right: auto;
}

#home-remedies {
  background-image: url(../img/home-remedies.png);
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@supports (background-image: url(../img/home-remedies.webp)) {
  #home-remedies {
    background-image: url(../img/home-remedies.webp);
  }
}
#marketplace .right {
  width: 50%;
  margin-left: auto;
}

#marketplace {
  background-image: url(../img/marketplace.png);
  background-size: contain;
  background-position: bottom left 5%;
  background-repeat: no-repeat;
}

@supports (background-image: url(../img/marketplace.webp)) {
  #marketplace {
    background-image: url(../img/marketplace.webp);
  }
}
footer {
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, var(--bgColor), var(--fadeDarkG));
}

footer button {
  height: fit-content;
  margin-bottom: 8px;
}

footer button:hover {
  color: var(--lightG);
}

.locked {
  overflow: hidden;
}

.modal {
  position: fixed;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6666666667);
  padding: 9vh 0;
  display: none;
  z-index: 150;
}

.modal-content {
  position: unset;
  background: white;
  color: var(--textcolor);
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
  transform: translateY(-30vh);
  opacity: 0;
  margin: 0 auto;
  max-width: 95%;
  max-height: 100%;
  overflow: auto;
  width: 330px;
  transition: opacity 0.5s cubic-bezier(0, 1, 0.43, 0.99), transform 0.8s cubic-bezier(0, 1, 0.43, 0.99);
}

.modal.poppedUp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content.displayed {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.05, 0.96, 0.49, 0.91), transform 0.8s cubic-bezier(0.05, 0.96, 0.49, 0.91);
}

#customer-details,
.single-field-container {
  margin-bottom: 8px;
}

#customer-details li {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.single-field-container {
  display: flex;
  flex-direction: column;
}

.close {
  width: 30px;
  height: 30px;
  padding: 0;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close svg {
  fill: var(--textColor);
}

.modal-head-top {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.modal-head-top small {
  opacity: 0.6;
}

.modal-slide-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.modal-head {
  margin-bottom: 8px;
}

.modal h4 {
  text-align: left;
  margin-right: 5px;
  display: flex;
  flex-direction: column;
}

form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

#subscribeForm {
  flex-direction: column;
}

.modal .primary-btn {
  width: 250px;
  height: 44px;
  font-weight: 500;
}

.userData {
  height: 40px;
  padding-left: 10px;
  padding-left: 10px;
  border-radius: 6px;
  border: 1px solid var(--lightGrey);
}

.userData:-webkit-autofill,
.userData:-webkit-autofill:hover {
  box-shadow: 0 0 0px 1000px var(--autofill) inset;
}

.userData:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px var(--autofill) inset, 0 0 2px var(--lighterG);
}

.userData:focus,
.userData:focus-visible {
  box-shadow: 0 0 2px var(--lighterG);
  border: 1px solid var(--darkG);
  outline: none;
}

legend {
  font-size: 0.9em;
  padding: 8px;
  background: transparent;
  color: var(--lighterG);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 800;
}

#customer-details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
}

.signup-plan {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 16px;
  background: var(--bgColor);
  cursor: pointer;
}

.signup-plan:hover {
  box-shadow: 0 0 2px var(--brightG), 0 0 10px var(--brightG);
  cursor: pointer;
}

.signup-plan.selected {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.031372549);
  padding: 16px;
  background: var(--lightG);
  color: white;
  cursor: pointer;
}

.signup-plan.selected.selected-animation {
  animation: select 1s linear forwards;
}

@keyframes select {
  20% {
    color: white;
    background: var(--lightG);
  }
  30% {
    color: unset;
    background: unset;
  }
  40% {
    color: white;
    background: var(--lightG);
  }
  50% {
    color: unset;
    background: unset;
  }
  60% {
    color: white;
    background: var(--lightG);
  }
  70% {
    color: unset;
    background: unset;
  }
  80% {
    color: white;
    background: var(--lightG);
  }
  100% {
    color: white;
    background: var(--lightG);
  }
}
.signup-perk-icon {
  stroke: var(--lightG);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.05em;
}

.included .signup-perk-icon {
  fill: var(--lightG);
}

.included .subscription-perk-label {
  color: var(--lightG);
  font-weight: 500;
}

h4 {
  font-weight: 500;
  font-size: 1.1em;
}

.modal-logo {
  height: 80px;
  fill: var(--darkG);
}

.required {
  color: var(--required);
}

.label-text {
  opacity: 0.6;
}

label {
  font-size: 0.8em;
  line-height: 150%;
  padding-left: 5px;
}

label, input {
  flex-grow: 1;
}

.userData::placeholder {
  font-size: 12px;
  color: var(--textColor);
  opacity: 0.3;
  font-family: "Chillax", sans-serif;
}

.invalid, .userData.invalid,
.userData.invalid:-webkit-autofill {
  background: var(--invalidBg);
  box-shadow: 0 0 0px 1000px var(--invalidBg) inset;
}

.errorMessages {
  padding: 8px;
  font-size: 13px;
  color: var(--red);
}

.loading {
  position: relative;
  background: var(--loadingGrey);
  pointer-events: none;
}

.submit-loader {
  display: none;
}

.loading .submit-loader {
  display: inline-block;
  content: "";
  animation: r_loading 1s linear infinite;
  width: 16px;
  height: 16px;
  border: 2px solid var(--brightG);
  border-left-color: transparent;
  border-radius: 50%;
  margin-left: 8px;
}

.loading .submit-label {
  animation: blink 1s alternate infinite;
}

.success-block,
.success-head,
.success-text {
  text-align: center;
}

.success-block {
  padding: 16px;
}

.success-head {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 12px;
  line-height: 1.5;
}

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

.success-icon {
  height: 50px;
}

#form-slides-container {
  display: flex;
  gap: 10px;
  transition: translate 0.8s cubic-bezier(0.5, 0, 0.35, 1);
}

.signup-slide-container {
  display: flex;
  flex-direction: column;
}

.signup-slide, .subscription-block, .termsandlegal {
  border-radius: 10px;
  background: var(--lightestGrey);
  padding: 20px;
}

#return-to-signup {
  margin-top: 12px;
  font-size: 13px;
  color: var(--backToSignupLinkBright);
  width: fit-content;
  display: block;
  margin: 12px auto 0;
}

.fields-container {
  margin-bottom: 16px;
}

#top-right {
  position: absolute;
  display: flex;
  right: 5px;
  top: 10px;
  width: fit-content;
  z-index: 100;
  align-items: center;
}

#signin {
  display: block;
  background: none;
  color: white;
  width: 140px;
  border-radius: 4px;
  padding: 7.4px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.15s linear;
  background: var(--lightG);
  text-decoration: none;
}

#language {
  color: var(--textcolor);
  display: grid;
  grid-template-columns: 20px 20px;
  gap: 10px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  padding: 10px;
  width: fit-content;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1882352941);
  border: 1px solid rgba(0, 0, 0, 0.062745098);
  background: #ededed;
  height: auto;
  margin-right: 8px;
}

#language.en #toggle {
  translate: -34px -50%;
}

#language span {
  font-size: 0.95em;
  font-weight: 600;
}

#toggle {
  position: absolute;
  top: 50%;
  right: 0;
  translate: -4px -50%;
  width: 30px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lightG);
  color: var(--textColor);
  border-radius: 2px;
  box-shadow: 2px 2px 2px var(--text-50);
  transition: translate 0.2s linear;
}

#toggle svg {
  stroke: white;
}

#signin-modal .subscription-block {
  background: var(--paleG);
}

#signin svg {
  fill: var(--brightG);
}

#signin:hover {
  color: var(--lighterG);
}

#signin:hover svg {
  animation: shake linear 1s forwards;
}

.signup-slide {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  flex-grow: 1;
  position: relative;
}

@keyframes shake {
  10% {
    rotate: 20deg;
  }
  20% {
    rotate: -20deg;
  }
  30% {
    rotate: 10deg;
  }
  40% {
    rotate: -10deg;
  }
  50% {
    rotate: 5deg;
  }
  60% {
    rotate: -5deg;
  }
  70% {
    rotate: 0deg;
  }
}
.subscription-block {
  width: 100%;
}

.billing-periods {
  border: 1px solid var(--darkG);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  margin: auto;
}

.billing-period {
  display: inline-block;
  width: 120px;
  text-align: center;
  font-weight: 400;
  padding: 8px 0;
  cursor: pointer;
}

.billing-period.selected {
  background: var(--lightG);
  color: white;
  font-weight: 500;
  pointer-events: none;
}

#signupForm {
  overflow-x: hidden;
}

.signup-selected-plan {
  margin-bottom: 20px;
  width: fit-content;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 0.8em;
  background: var(--fadeLightG);
  display: flex;
  align-items: center;
}

.icon {
  height: 24px;
  width: auto;
  margin: 4px 2px 4px 0;
}

.selected-plan-name {
  text-transform: uppercase;
  display: inline-block;
  padding: 4px;
}

.selected-plan-price {
  font-size: 0.9em;
}

.signup-price-block {
  display: flex;
  align-items: baseline;
}

.slide-2-btn,
.slide-3-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-3-btn {
  padding-top: 20px;
}

.slide-3-btn.dn {
  display: none;
}

.goBack {
  font-size: 0.85em;
  width: fit-content;
}

.goBack:hover {
  color: var(--lightG);
}

.new .signup-price {
  font-size: 3.2em;
  letter-spacing: -1px;
  font-weight: 500;
}

.selected .signup-perk-icon {
  stroke: var(--bgColor);
}

.selected .included .signup-perk-icon {
  fill: var(--bgColor);
}

.selected .included .subscription-perk-label {
  color: var(--bgColor);
}

.recommended {
  position: relative;
  box-shadow: 0 0 0 3px var(--recommended), 0 8px 10px rgba(0, 0, 0, 0.1882352941);
}

.recommended::before {
  content: "Best value";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  background: var(--recommended);
  color: var(--textColorAA);
  font-size: 0.9em;
  border-radius: 2px;
  padding: 0 6px;
}

.plan-desc {
  text-align: unset;
  font-size: 0.8em;
  margin: 0;
  opacity: 0.5;
  line-height: unset;
}

.subscription-name {
  font-weight: 400;
  padding-bottom: 4px;
  font-size: 1.15em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-icon {
  height: 50px;
}

.signup-perks {
  padding: 10px 0;
}

.subscription-perk {
  display: flex;
  align-items: center;
  gap: 4px;
}

.subscription-perk.included {
  gap: 8px;
}

.subscription-perk-label {
  line-height: 30px;
}

.h-auto {
  height: auto !important;
}

#subscribeModal .modal-content {
  width: 450px;
}

.modal.info-modal * {
  font-size: 14px;
}

.modal.info-modal .termsandlegal-block {
  margin-bottom: 20px;
}

.modal.info-modal p {
  margin-bottom: 0;
}

.modal.info-modal .modal-slide-title {
  border-bottom: 1px solid;
}

.modal.info-modal .termsandlegal {
  background: none;
  padding: 10px 0;
}

.modal.info-modal h4,
.modal.info-modal h5,
.modal.info-modal h6 {
  font-weight: 600;
}

.modal.info-modal h5,
.modal.info-modal h6 {
  text-align: left;
  margin-bottom: 4px;
}

.modal.info-modal h6 {
  margin-top: 12px;
  color: var(--lightG);
  font-weight: 500;
}

.modal.info-modal .modal-content {
  max-width: 700px;
  width: 95%;
}

.modal.info-modal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.modal.info-modal li::marker {
  translate: 200%;
}

@keyframes r_loading {
  to {
    rotate: 360deg;
  }
}
@keyframes blink {
  to {
    opacity: 0.3;
  }
}
@media screen and (max-width: 1200px) {
  #home-remedies {
    background-position: bottom right -25%;
  }
}
@media screen and (max-width: 1024px) {
  #natural-healing {
    width: 80vw;
    padding-left: 0;
    padding-right: 0;
  }
  #home-remedies {
    background-position: bottom right -25vw;
  }
  #home-remedies .left,
  #marketplace .right {
    width: 60%;
  }
  #marketplace {
    background-position: bottom left -15vw;
  }
  .slider-control svg {
    width: 80px;
  }
}
@media screen and (max-width: 900px) {
  h2 {
    color: var(--lightG);
  }
}
@media screen and (max-width: 850px) {
  #subscribeModal, #signup-modal {
    padding: 0;
    align-items: center;
    justify-content: center;
  }
  .modal.poppedUp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #signup-details {
    grid-template-columns: unset;
    grid-template-rows: repeat(3, auto);
    row-gap: 16px;
  }
  .signup-plan {
    flex-direction: unset;
    align-items: baseline;
  }
  .signup-plan.selected {
    flex-direction: unset;
  }
  .modal-content {
    scrollbar-width: none;
    margin: 0;
  }
  .signup-plan-head {
    width: 40%;
    margin-right: 5vw;
  }
  .signup-perks {
    border-left: 1px solid var(--fadeLighterG);
    padding-left: 20px;
  }
  .recommended::before {
    left: unset;
    bottom: unset;
    top: 0;
    right: 0;
    translate: -10px 10px;
  }
  #form-slides-container {
    height: 100%;
    align-items: flex-start;
  }
  #signupForm {
    height: 100%;
  }
  .billing-periods {
    overflow: unset;
  }
  .signup-slide-container {
    height: 100%;
    overflow: hidden;
  }
  .signup-slide {
    overflow: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 800px) {
  #home-remedies,
  #marketplace {
    background: none;
  }
  #home-remedies .left,
  #marketplace .right {
    width: unset;
  }
  #home-remedies, #marketplace,
  #home-remedies h2, #marketplace h2 {
    text-align: center;
  }
  p {
    line-height: 1.8;
  }
}
@media screen and (max-width: 750px) {
  .slider-control svg {
    width: 50px;
    height: 50px;
  }
  #actions {
    flex-direction: column;
    gap: 12px;
  }
  #banner {
    height: 80vh;
  }
}
@media screen and (max-width: 680px) {
  .actions {
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 575px) {
  #customer-details {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
  footer button {
    height: 40px;
  }
  #footer-logo {
    height: 80px;
  }
  footer {
    height: 30vh;
    justify-content: center;
  }
  .slide {
    padding: 5vh 0;
  }
  .signup-plan-head {
    width: 100%;
    margin: 0;
  }
  .signup-name-and-price {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 100px;
    align-items: center;
  }
  .signup-plan {
    flex-direction: column;
  }
  .subscription-name {
    font-size: 1.3em;
  }
  .recommended::before {
    top: 0;
    translate: 16px 8px;
    rotate: 20deg;
  }
  .signup-perks {
    border: none;
    width: 100%;
  }
  .signup-plan.selected {
    flex-direction: column;
  }
  #subscribeModal .modal-content {
    width: 95%;
    max-width: 330px;
  }
  .slider-logo {
    height: 95px;
    width: auto;
  }
}
@media screen and (max-width: 450px) {
  .modal-content {
    text-align: justify;
    padding: 16px;
    width: 332px;
    max-width: unset;
  }
  .primary-btn, .secondary-btn {
    max-width: 90%;
    margin: 0 auto;
    height: 44px;
  }
  .success-head {
    font-size: 24px;
  }
  .success-text {
    font-size: 15px;
  }
  #signupForm, .signup-slide, .signup-slide-container {
    width: 300px;
    min-width: unset;
  }
  .signup-name-and-price {
    height: unset;
    flex-direction: column;
    align-items: unset;
  }
}

/*# sourceMappingURL=style.css.map */
