html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #141a46;
}

.header {
  display: flex;
  height: 77px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 0 32px 0 14px;
  border-bottom: 1px solid #dadbe3;
  z-index: 1;
}

.logo {
  max-height: 38px;
}

.menu {
  display: flex;
  gap: 50px;
  list-style-type: none;
}
.menu__item-link {
  cursor: pointer;
  list-style: none;
  color: #141a46;
  text-decoration: none;
  font-size: 16px;
  line-height: 27px;
}
.menu__item-link:hover {
  color: #ec8b5d;
}

.menu-mobile {
  margin: 0;
  height: fit-content;
  padding: 0 32px 0 24px;
  background-color: #f8f9fd;
  list-style-type: none;
  border-bottom: 1px solid #dadbe3;
  box-shadow: 8px 8px 20px rgba(106, 106, 106, 0.1215686275);
}
.menu-mobile__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #dadbe3;
}
.menu-mobile__item:last-child {
  border-bottom: none;
}
.menu-mobile__icon {
  width: 16px;
  height: 16px;
  rotate: 180deg;
}
.menu-mobile__item-link {
  cursor: pointer;
  list-style: none;
  color: #141a46;
  text-decoration: none;
  font-size: 16px;
  line-height: 27px;
}
.menu-mobile__item-link:hover {
  color: #ec8b5d;
}

.menu-button {
  align-items: center;
  background: transparent;
  border: none;
  display: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  padding: 4px;
}
.menu-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  filter: brightness(1.2);
}
.menu-button__image {
  width: 24px;
  height: 24px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background-color: white;
  display: none;
  z-index: 999;
}
.overlay__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dadbe3;
  padding: 22px 24px;
}

.image-info {
  position: relative;
  width: 100%;
  background-image: url("../images/dots-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f8f9fd;
  display: flex;
  justify-content: center;
}
.image-info__title {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(calc(-50% + 190px));
  display: flex;
  flex-direction: column;
}
.image-info__desc {
  font-size: 24px;
  line-height: 64px;
  color: #141a46;
  white-space: nowrap;
}
.image-info__desc-highlight {
  padding: 8px;
  font-size: 32px;
  line-height: 38px;
  border-radius: 10px;
  background-color: #ec8b5d;
  color: #ffffff;
  white-space: nowrap;
}
.image-info__img {
  margin-top: 30px;
  width: 1080px;
  max-width: 100%;
}
.image-info__shopify {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 180px;
}

.title {
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  color: #141a46;
}

.explain {
  display: flex;
  justify-content: center;
  padding: 61px 0 80px;
  position: relative;
}
.explain__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1780px;
  width: 100%;
  margin: 0 101px;
  position: relative;
}
.explain__content-desc {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #333333;
  width: 60%;
}
.explain__img-right {
  position: absolute;
  right: -70px;
  top: calc(50% - 207px);
  width: 63%;
}
.explain__orange {
  width: 43%;
  background: #fdf6f4;
  border: 1px solid #fae7df;
  border-left-color: #fdf6f4;
  padding: 24px 48px 24px 0;
  border-radius: 0 24px 24px 0;
  position: relative;
}
.explain__orange:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1000px;
  background-color: red;
  right: 100%;
  top: -1px;
  background: #fdf6f4;
  border-top: 1px solid #fae7df;
  border-bottom: 1px solid #fae7df;
}
.explain__orange-title {
  display: flex;
  align-items: center;
  gap: 24px;
}
.explain__orange-icon {
  max-height: 47px;
}
.explain__orange-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ec8b5d;
}
.explain__orange-list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 40px;
  color: #333333;
  margin: 24px 0 0 0;
  padding: 0;
}
.explain__orange-item {
  display: flex;
  align-items: start;
  margin: 4px 0;
  line-height: 30px;
  list-style: none;
}
.explain__orange-item:before {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 4px 12px 0 0;
  background: url("../images/arrow-right.svg") no-repeat left center;
  background-size: contain;
  content: "";
}
.explain__tm {
  font-size: 12px;
  vertical-align: super;
  margin-left: -5px;
}

.text {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin: 0;
}
.text--small {
  font-size: 14px;
  line-height: 16px;
}
.text--large {
  font-size: 24px;
  line-height: 35px;
  color: #141a46;
}
.text--xl {
  font-size: 32px;
  line-height: 1.1;
}
.text--2xl {
  font-size: 72px;
  line-height: 1.1;
}
.text--semi-bold {
  font-weight: 500;
}
.text--bold {
  font-weight: 600;
}
.text--highlight {
  color: #ec8b5e;
}
.text--spaced {
  letter-spacing: 2px;
}
.text--italic {
  font-style: italic;
}
.text--link {
  text-decoration: none;
  cursor: pointer;
}
.text--link:hover {
  text-decoration: underline;
}

.feature {
  display: flex;
  background-color: white;
  margin-top: 40px;
}
.feature__desc {
  margin-bottom: 16px;
}
.feature__left-side {
  display: flex;
  flex-direction: column;
  flex: 0 1 53%;
  z-index: 1;
}
.feature__left-side__img {
  background-color: white;
  border-bottom-right-radius: 20px;
}
.feature__right-side {
  display: flex;
  flex-direction: column;
  flex: 0 1 47%;
  z-index: 0;
}
.feature__product-image-wrapper {
  position: absolute;
  width: 53%;
  padding: 32px 20px 32px 0;
  background: #ffffff;
  box-shadow: 8px 8px 20px rgba(106, 106, 106, 0.1215686275);
  border: 1px solid rgba(181, 182, 197, 0.368627451);
  border-radius: 0px 20px 20px 0px;
}
.feature__product-image {
  max-width: 100%;
}
.feature__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  padding: 16px 56px 24px 56px;
}
.feature__list {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 20px 24px;
}
.feature__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature__item-bullet {
  width: 20px;
  height: 20px;
  margin-top: 7px;
}
.feature__image {
  max-width: 100%;
}

.pricing {
  display: flex;
  width: 100%;
  align-items: flex-end;
  background-color: #f8f9fd;
  padding-bottom: 54px;
}
.pricing__image {
  margin-top: -10px;
  max-width: 42%;
}

.pricing-panel {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  padding-top: 48px;
  width: 53%;
}
.pricing-panel__title {
  margin-bottom: 20px;
}
.pricing-panel__image {
  display: none;
}
.pricing-panel__description {
  margin-bottom: 50px;
}
.pricing-panel__group {
  display: flex;
  gap: 60px;
}
.pricing-panel__card {
  min-width: min-content;
  display: flex;
  flex-direction: column;
  flex: 0 1 50%;
  padding: 28px 38px 80px;
  background: #ffffff;
  box-shadow: 8px 8px 8px rgba(105, 105, 105, 0.1607843137);
  border: 1px solid #b5b6c5;
  border-radius: 20px;
}
.pricing-panel__card--highlight {
  border: 1px solid #f57b00;
  background: #fbf4f2;
}
.pricing-panel__card-title {
  margin-bottom: 20px;
}
.pricing-panel__card-description {
  margin-bottom: 45px;
}
.pricing-panel__card-price {
  display: flex;
  align-items: center;
  position: relative;
}

.year {
  position: relative;
}
.year__saving {
  position: absolute;
  bottom: -4px;
  left: calc(100% + 10px);
  width: 87px;
  height: 87px;
}

@media only screen and (min-width: 1440px) and (max-width: 1900px) {
  .explain {
    padding: 61px 0;
  }
  .pricing-panel__title {
    margin-bottom: 16px;
  }
  .pricing-panel__description {
    margin-bottom: 40px;
  }
  .pricing-panel__group {
    display: flex;
    gap: 30px;
  }
  .pricing-panel__card {
    min-width: min-content;
    flex: 0 1 50%;
    padding: 20px 28px 60px;
  }
  .pricing-panel__card-price {
    font-size: 42px;
  }
  .pricing-panel__card-title {
    margin-bottom: 28px;
  }
  .pricing-panel__card-description {
    margin-bottom: 35px;
  }
  .year__saving {
    width: 80px;
    height: 80px;
  }
  .feature__container {
    padding: 24px 24px 24px 58px;
  }
  .feature__list {
    grid-template-columns: 1fr 166px 1fr;
    gap: 8px 10px;
  }
  .pricing__image {
    margin-top: -50px;
  }
  .pricing-panel__card-price {
    font-size: 42px;
  }
}
.contact {
  display: flex;
  gap: 40px;
  padding: 42px 52px;
  background-color: white;
}
.contact__image-wrapper {
  margin: -12px;
  flex: 0 1 56%;
}
.contact__image {
  margin-top: 12px;
  max-width: 100%;
}
.contact__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 1 44%;
}
.contact__form-input {
  padding: 10px 16px;
  background: #f8f9fd;
  border: 0.25px solid #141a46;
  border-radius: 8px;
  opacity: 1;
  height: 48px;
}
.contact__form-input:focus {
  outline: none;
}
.contact__form-input::placeholder {
  color: #9f9f9f;
}
.contact__form-title {
  margin-bottom: 20px;
}
.contact__form-description {
  margin-bottom: 28px;
}
.contact__form-select {
  padding: 10px 16px;
  background: #f8f9fd;
  border: 1px solid #141a46;
  border-radius: 8px;
  opacity: 1;
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/arrow-dropdown.svg");
  background-position: right 24px center;
  background-repeat: no-repeat;
  background-size: 24px;
  cursor: pointer;
}
.contact__form-select:focus {
  outline: none;
}
.contact__form-select::placeholder {
  color: #9f9f9f;
}
.contact__form-error {
  color: red;
}
.contact__form-error--hidden {
  display: none;
}
.contact__form-success {
  color: green;
}
.contact__form-success--hidden {
  display: none;
}
.contact__form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 20px;
}
.contact__form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: #141a46;
  border: 0.25px solid #141a46;
  border-radius: 8px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  color: white;
  padding: 0 26px;
  cursor: pointer;
  margin-bottom: 16px;
}
.contact__form-submit:hover {
  opacity: 0.8;
}
.contact__submit-icon {
  width: 20px;
  height: 20px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 12px solid #ec8b5d;
  background-color: #f8f9fd;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  height: 54px;
  width: 54px;
}
.footer__slash {
  margin: 0 8px;
}

.asterisk {
  margin-top: -10px;
  margin-left: 30px;
  padding-top: 12px;
}

.footer-mobile__logo {
  display: none;
}

@media only screen and (max-width: 1439px) {
  .image-info__desc {
    font-size: 20px;
    line-height: 44px;
  }
  .image-info__desc-highlight {
    padding: 6px;
    font-size: 30px;
    line-height: 42px;
  }
  .explain__orange {
    width: 100%;
    order: 2;
  }
  .explain__img-right {
    top: calc(50% - 170px);
  }
  .explain__img-right {
    position: unset;
    order: 1;
    margin: 12px 0;
    width: calc(100% - 24px);
  }
  .explain__content-desc {
    width: 100%;
  }
  .feature {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-top: 40px;
  }
  .feature__left-img {
    display: flex;
    justify-content: center;
  }
  .feature__product-image-wrapper {
    width: calc(100% - 148px);
    position: unset;
    padding: 32px 20px;
    border-radius: 20px;
  }
  .pricing-panel {
    padding-left: 100px;
    padding-top: 48px;
    padding-right: 100px;
    width: 100%;
  }
  .pricing-panel__card-price {
    font-size: 52px;
  }
  .pricing-panel__image {
    display: inline-block;
    width: 30%;
    margin: -60px auto 40px;
  }
  .pricing__image {
    display: none;
  }
  .contact {
    flex-direction: column;
    align-items: center;
    padding: 42px 100px;
  }
  .contact__form-input {
    padding: 14px 16px;
    height: 48px;
  }
  .contact__form-select {
    padding: 14px 16px;
    height: 48px;
  }
  .contact__form-submit {
    height: 52px;
    padding: 0 24px;
  }
}
@media (max-width: 1024px) {
  .logo {
    max-height: 32px;
  }
  .menu {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .image-info {
    margin-top: 77px;
  }
  .pricing-panel__image {
    width: 50%;
    margin: -60px auto 40px;
  }
  .header {
    position: fixed;
    width: 100%;
    padding: 0 24px;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .footer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
    padding: 40px 24px;
  }
  .footer__logo {
    display: none;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer-mobile__logo {
    display: block;
    max-width: 200px;
  }
  .pricing-panel__card-price,
  .pricing-panel .year,
  .pricing-panel .month {
    font-size: 20px;
    line-height: 43px;
  }
  .year__saving {
    bottom: 4px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .feature__item .text {
    font-size: 14px;
  }
  .feature__item-bullet {
    width: 12px;
    height: 12px;
    margin-top: 11px;
  }
  .feature__desc {
    margin-bottom: 0px;
  }
  .image-info__img {
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .image-info__shopify {
    right: 12px;
    bottom: 12px;
    max-width: 100px;
  }
  .image-info__desc {
    font-size: 16px;
    line-height: 28px;
  }
  .image-info__desc-highlight {
    font-size: 20px;
    line-height: 24px;
  }
  .image-info__title {
    left: 50%;
    transform: translateX(-50%);
  }
  .pricing-panel__card {
    padding: 24px 30px 40px;
  }
  .pricing-panel__card-description {
    margin-bottom: 16px;
  }
  .explain {
    padding: 30px 0 0;
  }
  .explain__content {
    margin: 0 24px;
  }
  .pricing-panel {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pricing-panel__card {
    flex: unset;
    width: 100vw;
    max-width: 431px;
  }
  .pricing-panel__card-price,
  .pricing-panel .year,
  .pricing-panel .month {
    font-size: 38px;
    margin-bottom: 8px;
  }
  .pricing-panel__group {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .contact {
    padding: 24px;
  }
  .feature__container {
    padding: 24px;
  }
  .feature__list {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .feature__product-image-wrapper {
    width: calc(100% - 48px);
  }
  .footer__copyright .text {
    font-size: 14px;
  }
  .footer__slash {
    opacity: 0;
  }
  .footer__slash-policy {
    display: none;
  }
}

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