@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018

 ******************************************************************************/
/* 按鈕尺寸表（左右 padding、字級） */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
  word-break: normal;
}

.mx-date-row,
.mx-calendar-content .cell {
  vertical-align: middle;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}
html body, body body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
mark {
  background: #ff0;
  color: #000;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}

table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

input, select {
  vertical-align: middle;
}

/*==================== 表單元素 - 去除ios預設外觀 input ====================*/
input,
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
}

/*==================== 表單元素 - 去除ie預設外觀 select ====================*/
select::-ms-expand {
  display: none;
}

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

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*改寫iOS Safari中可點擊元素的高亮顏色*/
  font-size: initial;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*去除focus outline-chrome預設*/
a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0;
}

form {
  width: 100%;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: none;
  padding: 0;
  line-height: inherit;
  color: #333;
  overflow: hidden;
  width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

/*隱藏小箭頭*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /*margin: 0;*/
}

input[type=search] {
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 1px \9 ;
  line-height: normal;
  vertical-align: baseline;
}

input[type=radio] {
  -webkit-appearance: radio;
  border-radius: 50%;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

/*file、radio、checkbox的focus設定*/
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*placeholder*/
::-webkit-input-placeholder { /* WebKit browsers */
  color: #9CAFCF;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #9CAFCF;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #9CAFCF;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #9CAFCF;
}

/*額外新增*/
* {
  box-sizing: border-box;
}

/*==================== 清單 ====================*/
ul,
ol {
  margin-top: 0;
  margin-bottom: 16px;
  /* padding-left: 30px; */
}

/* 第二層崁套margin皆為0 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
  padding-left: 30px;
}

img {
  border: 0;
  margin: 0;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: normal;
}

em {
  font-weight: normal;
  font-style: normal;
}

::-moz-selection {
  color: #fff;
  background: #F5BA18;
}

::selection {
  color: #fff;
  background: #F5BA18;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.hide {
  display: none;
}
@media (min-width: 0) {
  .hide-xs {
    display: none;
  }
}
@media (min-width: 576px) {
  .hide-sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide-lg {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hide-xl {
    display: none;
  }
}
@media (min-width: 1440px) {
  .hide-xxl {
    display: none;
  }
}

.block {
  display: block;
}
@media (min-width: 0) {
  .block-xs {
    display: block;
  }
}
@media (min-width: 576px) {
  .block-sm {
    display: block;
  }
}
@media (min-width: 768px) {
  .block-md {
    display: block;
  }
}
@media (min-width: 992px) {
  .block-lg {
    display: block;
  }
}
@media (min-width: 1200px) {
  .block-xl {
    display: block;
  }
}
@media (min-width: 1440px) {
  .block-xxl {
    display: block;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
}

.link-break {
  word-break: break-all;
}

.border {
  border: 1px solid #D3D3D3;
}

.bg-light {
  background: #f4f4f4;
}

.hr {
  display: block;
  border: none;
  height: 1px;
  margin: 20px 0;
  background: #D3D3D3;
}

.line-height-xl {
  line-height: 1.6;
}

.tips {
  font-size: 14px;
  margin-top: 20px;
  color: #888;
}

.tooltips-trigger {
  display: inline-block;
  text-decoration: none;
}

.price-sell {
  color: #222;
  font-size: 12px;
  margin-bottom: 5px;
}

.price-offer {
  color: #2F4974;
  margin-bottom: 5px;
}

.price-cht {
  margin-right: 5px;
}

.price-num {
  display: inline-block;
}
.price-num::before {
  content: "NT$";
  display: inline;
  margin-right: 0.3125em;
}

.price-num-simple::before {
  content: "$";
  display: inline;
  margin-right: 0.15em;
}

.integral {
  color: #280172;
  margin-bottom: 5px;
}

.integral-cht {
  margin-right: 3px;
  font-size: 12px;
}

.integral-num {
  font-size: 16px;
  font-weight: bold;
}

.price-range {
  font-size: 16px;
}
.price-range__pre-text {
  color: #222;
  font-weight: bold;
}
.price-range__num::before {
  content: "$";
  display: inline;
  margin-right: 0.3125em;
}
.phone-verify {
  position: relative;
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
  color: #2F4974;
  width: 26px;
  margin: -4px 0;
}
.phone-verify::before, .phone-verify::after {
  font-family: "icomoon";
}
.phone-verify::before {
  content: "\e912";
  font-size: 22px;
  color: #999;
}
.phone-verify::after {
  content: "\e919";
  color: #999;
  position: absolute;
  right: -1px;
  top: -1px;
  font-size: 16px;
}
.phone-verify--success::after {
  content: "\e91a";
  color: #0CAC00;
}

.info-finish {
  display: none;
}
.info-finish--show {
  display: block;
}

.hover-mask {
  position: relative;
}
.hover-mask::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
}
.hover-mask:hover::before {
  opacity: 0.06;
}

@media (min-width: 992px) {
  .max-w180-md {
    min-width: 180px;
    max-width: 180px;
  }
}

@media (min-width: 992px) {
  .max-w140-md {
    min-width: 140px;
    max-width: 140px;
  }
}

@media (min-width: 992px) {
  .max-w85-md {
    min-width: 85px;
    max-width: 85px;
  }
}

.setting-status {
  border-bottom: 1px solid #D3D3D3;
  padding: 0 0 10px;
  margin: 0 0 10px;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot") format("embedded-opentype"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  position: relative;
  pointer-events: none;
}

.icon-chevron-top:before {
  content: "\e900";
}

.icon-chevron-down:before {
  content: "\e901";
}

.icon-chevron-left:before {
  content: "\e902";
}

.icon-chevron-right:before {
  content: "\e903";
}

.icon-cross:before {
  content: "\e904";
}

.icon-check:before {
  content: "\e905";
}

.icon-error:before {
  content: "\e906";
}

.icon-info:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\e908";
}

.icon-line:before {
  content: "\e909";
}

.icon-mail:before {
  content: "\e90a";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 80px;
  border: 1px solid transparent;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  transition: border 0.3s, color 0.3s, background-color 0.3s;
  /* ---- 主題 ---- */
}
.btn--lg {
  font-size: 20px;
  padding: 12px 40px;
}
.btn--md {
  font-size: 18px;
  padding: 8px 40px;
  min-width: 160px;
}
.btn--sm {
  font-size: 16px;
  padding: 8px 24px;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn--primary {
  --btn-color: #F5BA18;
  --btn-color-hover: #AE8411;
  --btn-color-disabled: #D1D1D1;
  --btn-text: #000;
  --btn-text-hover: #fff;
  --btn-text-disabled: #fff;
}
.btn--secondary {
  --btn-color: #00B4C8;
  --btn-color-hover: #00808E;
  --btn-color-disabled: #D1D1D1;
  --btn-text: #fff;
  --btn-text-hover: #fff;
  --btn-text-disabled: #fff;
}
.btn--filled {
  color: var(--btn-text);
  background-color: var(--btn-color);
  border-color: var(--btn-color);
}
.btn--filled:hover:not(:disabled) {
  color: var(--btn-text-hover);
  background-color: var(--btn-color-hover);
  border-color: var(--btn-color-hover);
}
.btn--filled:disabled {
  color: var(--btn-text-disabled);
  background-color: var(--btn-color-disabled);
  border-color: var(--btn-color-disabled);
}
.btn--outline {
  color: var(--btn-color);
  background-color: #fff;
  border-color: var(--btn-color);
}
.btn--outline:hover:not(:disabled) {
  color: var(--btn-color-hover);
  background-color: #fff;
  border-color: var(--btn-color-hover);
}
.btn--outline:disabled {
  border-color: var(--btn-color-disabled);
  color: var(--btn-color-disabled);
  background-color: #fff;
}
.btn--block {
  display: block;
}
.btn--inline {
  display: inline;
}

input[type=radio] {
  vertical-align: top;
}
input[type=checkbox] {
  vertical-align: middle;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* ───── Group（容器） ───── */
  /* ───── Label（標籤） ───── */
  /* ───── Field ───── */
  /* ───── checkbox ───── */
  /* ───── select ───── */
  /* ───── Textarea ───── */
  /* ───── 錯誤訊息 ───── */
}
.form__group {
  position: relative;
}
.form__group--required .form__label::before {
  content: "*";
  color: #DE3300;
  margin-right: 4px;
}
.form__group--error .form__field {
  border-color: #DE3300;
}
.form__group--error .form__error-text {
  display: block;
}
.form__checkgroup--error .form__error-text {
  display: block;
  margin-top: -8px;
}
.form__checkgroup--error .form__checklabel::before {
  border-color: #DE3300;
}
.form__label {
  font-size: 18px;
  display: block;
  color: #000;
}
.form__field {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 2px solid #F7F7F7;
  background: #F7F7F7;
  font-size: 18px;
  line-height: 140%;
  transition: border 0.3s;
}
.form__field::-moz-placeholder {
  color: #ACACAC;
}
.form__field::placeholder {
  color: #ACACAC;
}
.form__field:focus {
  outline: none;
  border-color: #00B4C8;
}
.form__field:disabled {
  background-color: #D1D1D1;
  cursor: not-allowed;
}
.form__checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form__checklabel {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.form__checklabel::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #E3E3E3;
  border-radius: 4px;
  transition: all 0.3s;
}
.form__checklabel::after {
  content: "\e905";
  font-family: "icomoon";
  line-height: 1;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  position: absolute;
  opacity: 0;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.form .form__checkbox:hover + .form__checklabel::before {
  border-color: #00B4C8;
}
.form .form__checkbox:checked + .form__checklabel::before {
  background: #00B4C8;
  border-color: #00B4C8;
}
.form .form__checkbox:checked + .form__checklabel::after {
  opacity: 1;
}
.form select {
  width: 100%;
  padding-right: 36px;
}
select:focus + .form::after {
  transform: translateY(-50%) rotate(180deg);
}
.form .select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form .select-wrapper::after {
  content: "\e901";
  font-family: "icomoon";
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  color: #000;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s;
}
.form textarea {
  resize: vertical;
  min-height: 78px;
}
.form__error-text {
  display: none;
  padding-left: 20px;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #DE3300;
  position: relative;
}
.form__error-text::after {
  content: "\e906";
  font-family: "icomoon";
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  color: #DE3300;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.6);
}
.modal__close {
  padding: 6px;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  color: #ACACAC;
  background: none;
  border: none;
  transition: color 0.3s;
}
.modal__close:hover {
  color: #646464;
}
.modal__content {
  position: relative;
  width: calc(100% - 64px);
  max-width: 592px;
  padding: 48px 24px;
  border-radius: 16px;
  background: #fff;
  z-index: 1;
  text-align: center;
}
.modal__text {
  margin-bottom: 24px;
}
.modal.modal--active {
  opacity: 1;
  pointer-events: auto;
}
.modal.modal--active .modal__content {
  transform: translateY(0);
}

@font-face {
  font-family: "Unbounded";
  src: url("/fonts/unbounded/Unbounded-Medium.woff2") format("woff2");
  src: url("../../fonts/Unbounded-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("/fonts/unbounded/Unbounded-Bold.woff2") format("woff2");
  src: url("../../fonts/Unbounded-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("/fonts/noto-sans-tc/NotoSansTC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("/fonts/noto-sans-tc/NotoSansTC-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("/fonts/noto-sans-tc/NotoSansTC-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
body {
  font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "PingFang TC", sans-serif;
}
body.header-fixed {
  overflow: hidden;
}
body.scroll-fixed {
  overflow: hidden;
}
body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.content-wrap {
  padding-top: 57px;
}
@media (min-width: 992px) {
  .content-wrap {
    padding-top: 83px;
  }
}

.section {
  width: 100%;
  padding: 48px 24px;
  position: relative;
}
@media (min-width: 992px) {
  .section {
    padding: 48px 80px;
  }
}
.section__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .section__inner {
    max-width: 1200px;
  }
}

h1 {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
}

h2 {
  color: #000;
  font-size: 32px;
  line-height: 120%;
  font-weight: 500;
}

.subtitle-m {
  color: #000;
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}

.text {
  color: #000;
  line-height: 160%;
}
.text-xl {
  font-size: 22px;
}
.text-l {
  font-size: 20px;
}
.text-m {
  font-size: 18px;
}
.text-s {
  font-size: 16px;
}
.text-decoration {
  text-decoration: underline;
}

p {
  color: #000;
  font-size: 20px;
  line-height: 160%;
  padding-top: 16px;
}

ul {
  color: #000;
  font-size: 20px;
  line-height: 160%;
  margin: 0;
}
ul p {
  padding: 0;
  margin-bottom: 8px;
}

a {
  font-size: inherit;
  color: #00B4C8;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #00808E;
}

.color-primary {
  color: #F5BA18;
}
.color-secondary {
  color: #00B4C8;
}
.color-white {
  color: #fff;
}

@media (min-width: 992px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 48px;
  }
  .subtitle-m {
    font-size: 28px;
  }
}
.deco::before {
  content: "";
  display: block;
  z-index: -999;
  background: radial-gradient(50% 50% at 50% 50%, #F8D164 0%, rgba(248, 209, 100, 0) 100%);
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 256px;
  right: -128px;
  top: 30%;
}
@media (min-width: 992px) {
  .deco::before {
    width: 600px;
    height: 600px;
    border-radius: 600px;
    right: -300px;
    top: -300px;
  }
}
.deco::after {
  content: "";
  display: block;
  z-index: -999;
  background: radial-gradient(50% 50% at 50% 50%, #8ADDE6 0%, rgba(138, 221, 230, 0) 100%);
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 640px;
  transform: translateX(50%);
  right: 50%;
  bottom: -220px;
}
@media (min-width: 992px) {
  .deco::after {
    width: 1000px;
    height: 1000px;
    border-radius: 1000px;
    transform: translateX(0%);
    position: absolute;
    right: -280px;
    bottom: -400px;
  }
}

.header {
  width: 100%;
  padding: 8px 24px;
  background: #fff;
  border-bottom: 1px solid #E3E3E3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (min-width: 992px) {
  .header {
    padding: 24px 24px;
  }
}
.header__wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header__wrap {
    max-width: 1200px;
  }
}
.header__logo img {
  width: auto;
  height: 24px;
  display: block;
}
@media (min-width: 992px) {
  .header__logo img {
    height: 28px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header__nav-link {
    display: inline-block;
    padding: 4px 16px;
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    transition: all 0.3s;
    text-decoration: none;
  }
  .header__nav-link:hover {
    color: #AE8411;
  }
  .header__nav .btn-group {
    display: flex;
    gap: 16px;
    margin-left: 8px;
  }
}
.header__hamburger .hamburger {
  display: inline-block;
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: #333333;
  transition: all 0.3s;
  pointer-events: none;
}
.header__hamburger .menu-icon {
  width: 40px;
  height: 40px;
  padding: 4px;
  position: relative;
}
.header__hamburger .menu-icon .ham {
  top: 12px;
}
.header__hamburger .menu-icon .bur {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__hamburger .menu-icon .ger {
  bottom: 12px;
}
.header__hamburger .menu-icon.active .ham {
  transform: translateX(0) translateY(8px) rotate(45deg) !important;
}
.header__hamburger .menu-icon.active .bur {
  opacity: 0;
}
.header__hamburger .menu-icon.active .ger {
  transform: translateX(0px) translateY(-6px) rotate(-45deg) !important;
}
@media (min-width: 992px) {
  .header__hamburger {
    display: none;
  }
}

.drawer {
  width: 100vw;
  height: calc(100vh - 57px);
  position: fixed;
  top: 57px;
  left: 0;
  z-index: 900;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(51, 51, 51, 0);
}
.drawer__wrap {
  width: 280px;
  height: 100%;
  padding: 24px 24px 64px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__link-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer__link-group .link {
  display: inline-block;
  padding: 4px 0;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
}
.drawer__btn-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.drawer__btn-group .btn {
  width: 100%;
}
.drawer.show {
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(51, 51, 51, 0.6);
}
.drawer.show .drawer__wrap {
  transform: translateX(0);
}

.body--no-scroll {
  overflow: hidden;
  height: 100vh;
}

.footer {
  width: 100%;
  padding: 24px 24px;
  background: #000;
  color: #fff;
  margin: auto;
}
.footer__wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-direction: column-reverse;
}
.footer__wrap span {
  color: #D1D1D1;
  text-align: center;
  font-size: 12px;
  line-height: 160%; /* 19.2px */
}
@media (min-width: 992px) {
  .footer__wrap {
    max-width: 1200px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__info {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer__info {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.footer__contact-link {
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  text-decoration: none;
  display: block;
  color: #fff;
  transition: all 0.3s;
}
.footer__contact-link:hover {
  color: #ACACAC;
}
@media (min-width: 992px) {
  .footer__contact {
    flex-direction: row;
  }
}
.footer__social {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.footer__social-item a {
  display: inline-block;
  padding: 4px;
  color: #fff;
  transition: all 0.3s;
}
.footer__social-item a:hover {
  color: #ACACAC;
}
.footer__social-icon {
  font-size: 24px;
}/*# sourceMappingURL=main.css.map */