/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html {
  font-size: 62.5%;
  overscroll-behavior: none;
  --header-height: 115px;
}

body {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  background: var(--bg-color);
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

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

button {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

a,
button,
input,
label,
textarea,
select {
  padding: 0;
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
}

textarea {
  resize: none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill:hover {
  transition: background-color 1s 9999s;
  -webkit-text-fill-color: var(--text-color);
  caret-color: var(--text-color);
}

input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

image {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Bodoni", serif;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 115.625%;
}

h1 {
  font-size: 6.4rem;
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 6rem !important;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 5rem !important;
    line-height: 52px !important;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 4rem !important;
  }
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 4.8rem !important;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 4.4rem !important;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 3.6rem !important;
  }
}

@media (max-width: 575.98px) {
  h3 {
    font-size: 2.2rem !important;
  }
}

input,
textarea {
  background: transparent;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: 600;
}

p {
  line-height: 26px !important;
}
@media (max-width: 767.98px) {
  p {
    line-height: 24px !important;
  }
}

.row > *, .container-fluid, .container {
  padding-left: calc(var(--grid-gutter-x) * 0.5);
  padding-right: calc(var(--grid-gutter-x) * 0.5);
}

.container-fluid, .container {
  --grid-gutter-x: 30px;
  --grid-gutter-y: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 1370px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--grid-gutter-y) * -1);
  margin-left: calc(var(--grid-gutter-x) * 0.5 * -1);
  margin-right: calc(var(--grid-gutter-x) * 0.5 * -1);
}
.row > * {
  margin-top: var(--grid-gutter-y);
}

.col {
  flex: 1 0;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
  --grid-gutter-x: 0px;
}

.g-0,
.gy-0 {
  --grid-gutter-y: 0px;
}

.g-1,
.gx-1 {
  --grid-gutter-x: 7.5px;
}

.g-1,
.gy-1 {
  --grid-gutter-y: 7.5px;
}

.g-2,
.gx-2 {
  --grid-gutter-x: 15px;
}

.g-2,
.gy-2 {
  --grid-gutter-y: 15px;
}

.g-3,
.gx-3 {
  --grid-gutter-x: 30px;
}

.g-3,
.gy-3 {
  --grid-gutter-y: 30px;
}

.g-4,
.gx-4 {
  --grid-gutter-x: 45px;
}

.g-4,
.gy-4 {
  --grid-gutter-y: 45px;
}

.g-5,
.gx-5 {
  --grid-gutter-x: 90px;
}

.g-5,
.gy-5 {
  --grid-gutter-y: 90px;
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 1170px;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xl-0,
  .gy-xl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xl-1,
  .gx-xl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xl-1,
  .gy-xl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xl-2,
  .gx-xl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xl-2,
  .gy-xl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xl-3,
  .gx-xl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xl-3,
  .gy-xl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xl-4,
  .gx-xl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xl-5,
  .gx-xl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xl-5,
  .gy-xl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --grid-gutter-x: 0px;
  }
  .g-lg-0,
  .gy-lg-0 {
    --grid-gutter-y: 0px;
  }
  .g-lg-1,
  .gx-lg-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-lg-1,
  .gy-lg-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-lg-2,
  .gx-lg-2 {
    --grid-gutter-x: 15px;
  }
  .g-lg-2,
  .gy-lg-2 {
    --grid-gutter-y: 15px;
  }
  .g-lg-3,
  .gx-lg-3 {
    --grid-gutter-x: 30px;
  }
  .g-lg-3,
  .gy-lg-3 {
    --grid-gutter-y: 30px;
  }
  .g-lg-4,
  .gx-lg-4 {
    --grid-gutter-x: 45px;
  }
  .g-lg-4,
  .gy-lg-4 {
    --grid-gutter-y: 45px;
  }
  .g-lg-5,
  .gx-lg-5 {
    --grid-gutter-x: 90px;
  }
  .g-lg-5,
  .gy-lg-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --grid-gutter-x: 0px;
  }
  .g-md-0,
  .gy-md-0 {
    --grid-gutter-y: 0px;
  }
  .g-md-1,
  .gx-md-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-md-1,
  .gy-md-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-md-2,
  .gx-md-2 {
    --grid-gutter-x: 15px;
  }
  .g-md-2,
  .gy-md-2 {
    --grid-gutter-y: 15px;
  }
  .g-md-3,
  .gx-md-3 {
    --grid-gutter-x: 30px;
  }
  .g-md-3,
  .gy-md-3 {
    --grid-gutter-y: 30px;
  }
  .g-md-4,
  .gx-md-4 {
    --grid-gutter-x: 45px;
  }
  .g-md-4,
  .gy-md-4 {
    --grid-gutter-y: 45px;
  }
  .g-md-5,
  .gx-md-5 {
    --grid-gutter-x: 90px;
  }
  .g-md-5,
  .gy-md-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --grid-gutter-x: 0px;
  }
  .g-sm-0,
  .gy-sm-0 {
    --grid-gutter-y: 0px;
  }
  .g-sm-1,
  .gx-sm-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-sm-1,
  .gy-sm-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-sm-2,
  .gx-sm-2 {
    --grid-gutter-x: 15px;
  }
  .g-sm-2,
  .gy-sm-2 {
    --grid-gutter-y: 15px;
  }
  .g-sm-3,
  .gx-sm-3 {
    --grid-gutter-x: 30px;
  }
  .g-sm-3,
  .gy-sm-3 {
    --grid-gutter-y: 30px;
  }
  .g-sm-4,
  .gx-sm-4 {
    --grid-gutter-x: 45px;
  }
  .g-sm-4,
  .gy-sm-4 {
    --grid-gutter-y: 45px;
  }
  .g-sm-5,
  .gx-sm-5 {
    --grid-gutter-x: 90px;
  }
  .g-sm-5,
  .gy-sm-5 {
    --grid-gutter-y: 90px;
  }
}
.align-center {
  align-items: center;
}

.separate {
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.5;
}
.separate:not(.separate--no-margin) {
  margin: 30px 0;
}

.link {
  margin-top: 40px;
  color: var(--primary-color);
}
.link.no-margin {
  margin: 0 !important;
}
.link:hover {
  text-decoration: underline;
}

.icon {
  filter: var(--icon-color);
}

.menu-icon {
  filter: var(--icon-menu-color);
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-none {
  display: none !important;
}

@media (max-width: 1399.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@keyframes shake {
  0%, 100% {
    translate: 0;
  }
  25%, 75% {
    translate: 3px;
  }
  50% {
    translate: -3px;
  }
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider input[type=radio] {
  display: none;
}
.slider-slides {
  display: flex;
  transition: transform 0.6s;
}
.slider-slides img {
  max-width: 100%;
  height: 260px;
  object-fit: cover;
}
.slider-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}
.slider-dots label {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

#s1:checked ~ .slider-slides {
  transform: translateX(0%);
}

#s2:checked ~ .slider-slides {
  transform: translateX(-100%);
}

#s3:checked ~ .slider-slides {
  transform: translateX(-200%);
}

#s4:checked ~ .slider-slides {
  transform: translateX(-300%);
}

#s5:checked ~ .slider-slides {
  transform: translateX(-400%);
}

#s1:checked ~ .slider-dots label[for=s1],
#s2:checked ~ .slider-dots label[for=s2],
#s3:checked ~ .slider-dots label[for=s3],
#s4:checked ~ .slider-dots label[for=s4],
#s5:checked ~ .slider-dots label[for=s5] {
  background: var(--primary-color);
}

.home__container {
  margin-top: 26px;
}
@media (max-width: 575.98px) {
  .home__container {
    margin-top: 0;
  }
}

.booking {
  margin-top: calc(var(--header-height) + 80px);
}
@media (max-width: 991.98px) {
  .booking {
    margin-top: calc(var(--header-height) + 50px);
  }
}
.booking__inner {
  padding: 40px 0 111px;
  background: url(../img/introduction/cover.png) no-repeat center/cover;
}
@media (max-width: 991.98px) {
  .booking__inner {
    padding: 40px 0 80px;
  }
}
.booking__title {
  max-width: 563px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 575.98px) {
  .booking__title {
    font-size: 3.8rem !important;
  }
}
.booking__desc {
  margin-top: 10px;
  text-align: center;
  opacity: 0.8;
}
.booking__form {
  margin-top: 60px;
  padding: 0 30px;
}
.booking__form-text-input {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.booking__form-text-input--date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.booking__form-text-input input[type=text], .booking__form-text-input input[type=tel], .booking__form-text-input input[type=email] {
  padding-right: 30px;
}
.booking__form-input {
  background: transparent;
}
.booking__form-input-icon {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.booking__form-select,
.booking__form ::picker(select) {
  appearance: base-select;
}
.booking__form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../assets/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  filter: var(--icon-color);
  transition: 0.3s;
}
.booking__form-select > .booking__form-select-option {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border: 2px solid #dddddd;
  background: #eeeeee;
  padding: 10px;
  transition: 0.4s;
}
.booking__form-select > .booking__form-select-option:first-of-type {
  border-radius: 8px 8px 0 0;
}
.booking__form-select > .booking__form-select-option:last-of-type {
  border-radius: 0 0 8px 8px;
}
.booking__form-select > .booking__form-select-option:not(.booking__form-select > .booking__form-select-option:last-of-type) {
  border-bottom: none;
}
.booking__form-select > .booking__form-select-option:nth-of-type(odd) {
  background: white;
}
.booking__form-select > .booking__form-select-option:checked {
  background-color: #86b817;
  color: #fff;
}
.booking__form-select > .booking__form-select-option:hover, .booking__form-select > .booking__form-select-option:focus {
  background-color: plum;
}
.booking__form-select > .booking__form-select-option:checked {
  font-weight: 600;
}
.booking__form-bottom {
  width: 100%;
  margin-top: 48px;
  text-align: center;
}
.booking__form-btn {
  font-size: 1.6rem;
  color: var(--primary-color);
}
.booking__form-btn:hover {
  font-weight: 500;
  text-decoration: underline;
}

.meal {
  margin: calc(var(--header-height) + 90px) 0 100px;
}
@media (max-width: 991.98px) {
  .meal {
    margin: calc(var(--header-height) + 60px) 0;
  }
}
@media (max-width: 767.98px) {
  .meal {
    margin: calc(var(--header-height) + 40px) 0 60px;
  }
}
@media (max-width: 767.98px) {
  .meal__title {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .meal__sub-title {
    font-size: 2.2rem !important;
  }
}
.meal__icon {
  display: flex;
  margin: 0 auto;
}
.meal__wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.meal__list {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .meal__list {
    margin-top: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.meal__btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
}
.meal__btn:hover {
  background: rgb(251, 143, 44);
}
.meal__btn:hover img {
  filter: var(--text-color);
}
@media (max-width: 1199.98px) {
  .meal__btn {
    width: 54px;
    height: 54px;
  }
}
.meal__btn-prev {
  top: 30%;
  transform: translate(-50%);
  left: 0;
}
@media (max-width: 991.98px) {
  .meal__btn-prev {
    top: 20%;
    transform: translateY(-20%);
  }
}
.meal__btn-prev:focus ~ .meal__wrapper .meal__item {
  transform: translateX(0);
}
.meal__btn-next {
  top: 30%;
  transform: translate(50%);
  right: 0;
}
@media (max-width: 991.98px) {
  .meal__btn-next {
    top: 20%;
    transform: translateY(-20%);
  }
}
.meal__btn-next:focus ~ .meal__wrapper .meal__item {
  transform: translateX(-100%);
}
.meal__btn-icon {
  width: 44px;
}
@media (max-width: 1199.98px) {
  .meal__btn-icon {
    width: 36px;
  }
}
.meal__item {
  width: 33.33%;
  flex-shrink: 0;
  padding: 15px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .meal__item {
    width: calc(50% - 15px);
    min-height: 430px;
    background: rgba(0, 0, 0, 0.7333333333);
    border-radius: 16px;
  }
}
@media (max-width: 575.98px) {
  .meal__item {
    width: 100%;
    min-height: fit-content;
  }
}
.meal__img-wrap {
  position: relative;
  padding-top: 108%;
}
@media (max-width: 767.98px) {
  .meal__img-wrap {
    padding-top: 90%;
  }
}
@media (max-width: 575.98px) {
  .meal__img-wrap {
    padding-top: 56%;
  }
}
.meal__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meal__price {
  margin-top: 0 !important;
}
@media (max-width: 767.98px) {
  .meal__price {
    font-size: 2rem !important;
  }
}
.meal__introduction {
  margin-top: 102px;
  background: url(../img/food/meal-cover.png) no-repeat center/cover;
}
@media (max-width: 767.98px) {
  .meal__introduction {
    margin-top: 60px;
  }
}
.meal__introduction-inner {
  padding: 84px 0;
}
@media (max-width: 575.98px) {
  .meal__introduction-inner {
    padding: 50px 0;
  }
}
.meal__introduction-content {
  max-width: 770px;
  margin: 0 auto;
  padding: 46px 100px;
  background: rgba(17, 17, 20, 0.5);
  backdrop-filter: blur(2px);
  text-align: center;
}
@media (max-width: 991.98px) {
  .meal__introduction-content {
    padding: 46px 120px;
  }
}
@media (max-width: 575.98px) {
  .meal__introduction-content {
    padding: 36px 0;
  }
}
.meal__introduction-title {
  font-size: 6.4rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .meal__introduction-title {
    font-size: 3.6rem;
  }
}
@media (max-width: 767.98px) {
  .meal__introduction-title {
    font-size: 3.2rem;
  }
}
@media (max-width: 575.98px) {
  .meal__introduction-title {
    font-size: 2.6rem;
  }
}
.meal__introduction-desc {
  margin-top: 6px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 158.333%;
  color: #fff;
}
@media (max-width: 767.98px) {
  .meal__introduction-desc {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .meal__introduction-desc {
    font-size: 1.8rem;
  }
}
.meal__introduction-btn {
  margin: 38px auto 0;
  padding: 0 100px !important;
}
@media (max-width: 575.98px) {
  .meal__introduction-btn {
    padding: 0 50px !important;
    font-size: 1.4rem !important;
  }
}

.blog-page {
  padding: 0;
  margin: calc(var(--header-height) + 80px) 0 100px;
}
@media (max-width: 767.98px) {
  .blog-page {
    margin: calc(var(--header-height) + 40px) 0 50px;
  }
}
.blog-page__thumb {
  width: 100%;
  height: 491px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .blog-page__thumb {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .blog-page__thumb {
    height: 300px;
  }
}
.blog-page__title {
  font-size: 6.2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1399.98px) {
  .blog-page__title {
    font-size: 5rem !important;
  }
}
@media (max-width: 1199.98px) {
  .blog-page__title {
    font-size: 3.6rem !important;
  }
}
@media (max-width: 575.98px) {
  .blog-page__title {
    font-size: 3.2rem !important;
  }
}
.blog-page__link {
  display: inline-block;
  margin-top: 44px;
}
.blog-page__separate {
  margin: 50px 0 !important;
}
.blog-page__sub-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-page__sub-thumb {
  width: 100%;
  height: 534px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .blog-page__sub-thumb {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .blog-page__sub-thumb {
    height: 300px;
  }
}
.blog-page__sub-thumb:hover {
  opacity: 0.9;
}
.blog-page__sub-title, .blog-page__sub-heading {
  font-size: 4rem;
  font-weight: 500;
  line-height: 125%;
}
@media (max-width: 1399.98px) {
  .blog-page__sub-title, .blog-page__sub-heading {
    font-size: 3.6rem !important;
  }
}
@media (max-width: 991.98px) {
  .blog-page__sub-title, .blog-page__sub-heading {
    font-size: 3rem !important;
  }
}
@media (max-width: 575.98px) {
  .blog-page__sub-title, .blog-page__sub-heading {
    font-size: 2.6rem !important;
  }
}
.blog-page__sub-title {
  margin: 24px 0 16px;
}
@media (max-width: 767.98px) {
  .blog-page__sub-title {
    margin-bottom: 24px;
  }
}
.blog-page__sub-desc {
  margin-top: 20px;
  width: 383px;
}
@media (max-width: 767.98px) {
  .blog-page__sub-desc {
    width: 100%;
  }
}
.blog-page__sub-info {
  margin-top: auto;
  display: flex;
  gap: 30px;
}
.blog-page__sub-auth {
  position: relative;
}
.blog-page__sub-auth::before {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: -20%;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.blog-page__sub-act {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .blog-page__sub-act {
    margin-top: 30px;
  }
}
.blog-page__sub-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
}
.blog-page__sub-btn:hover {
  color: var(--primary-color);
}
.blog-page__sub-btn:hover .blog-page__sub-icon {
  filter: var(--primary-color);
}
.blog-page__sub-list {
  display: flex;
  align-items: center;
  gap: 29px;
}
.blog-page__sub-number {
  padding: 8px 11px;
  cursor: pointer;
}
.blog-page__sub-number--current {
  background: var(--primary-color);
  cursor: auto;
  user-select: none;
}
.blog-page__letter {
  position: relative;
  margin-top: 196px;
  display: flex;
  align-items: center;
  gap: 75px;
}
@media (max-width: 991.98px) {
  .blog-page__letter {
    margin-top: 120px;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog-page__letter {
    flex-direction: column;
  }
}
.blog-page__letter-img {
  width: 470px;
  height: 530px;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .blog-page__letter-img {
    width: 340px;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .blog-page__letter-img {
    width: 100%;
    height: 300px;
  }
}
.blog-page__letter-content {
  max-width: 625px;
}
.blog-page__letter-title {
  font-size: 6.4rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .blog-page__letter-title {
    font-size: 3.8rem !important;
  }
}
@media (max-width: 767.98px) {
  .blog-page__letter-title {
    font-size: 3.6rem !important;
  }
}
@media (max-width: 575.98px) {
  .blog-page__letter-title {
    font-size: 3.4rem !important;
  }
}
.blog-page__letter-desc {
  margin-top: 8px;
  max-width: 590px;
  line-height: 162.5%;
}
.blog-page__letter-icon {
  position: absolute;
  top: -47px;
  left: -56px;
}
.blog-page__form {
  margin-top: 120px;
}
@media (max-width: 767.98px) {
  .blog-page__form {
    margin-top: 60px;
  }
}
.blog-page__form-group {
  width: 100% !important;
}

.blog-page-detail__title {
  max-width: 910px;
}
@media (max-width: 767.98px) {
  .blog-page-detail__title {
    font-size: 4.6rem !important;
  }
}
@media (max-width: 575.98px) {
  .blog-page-detail__title {
    font-size: 3.6rem !important;
  }
}
.blog-page-detail__desc {
  margin: 24px 0 70px;
  max-width: 970px;
  line-height: 162.5%;
}
@media (max-width: 767.98px) {
  .blog-page-detail__desc {
    margin-bottom: 40px;
  }
}
.blog-page-detail__thumb {
  height: 556px;
}
@media (max-width: 767.98px) {
  .blog-page-detail__thumb {
    height: 300px;
  }
}
.blog-page-detail__row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .blog-page-detail__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-page-detail__group, .blog-page-detail__social {
  display: flex;
  align-items: center;
  gap: 24px;
}
.blog-page-detail__copy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  min-width: 128px;
  height: 38px;
  border-radius: 19.5px;
  border: 1px solid var(--white-80, rgba(255, 255, 255, 0.8));
  cursor: pointer;
}
.blog-page-detail__copy:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.blog-page-detail__social-icon {
  width: 26px;
  height: 26px;
  transition: translate 0.3s;
  cursor: pointer;
}
.blog-page-detail__social-icon:hover {
  filter: brightness(0) saturate(100%) invert(79%) sepia(51%) saturate(4811%) hue-rotate(339deg) brightness(101%) contrast(97%);
}
.blog-page-detail__text::first-letter {
  float: left;
  font-size: 1.4em;
  line-height: 1;
  margin-right: 0.1em;
}
.blog-page-detail__sub {
  margin-top: 100px;
}
.blog-page-detail__sub-title {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 141.667%;
}

.about-page {
  margin: calc(var(--header-height) + 100px) 0;
}
@media (max-width: 767.98px) {
  .about-page {
    margin-top: calc(var(--header-height) + 80px);
    margin-bottom: 70px;
  }
}
@media (max-width: 575.98px) {
  .about-page {
    margin-top: calc(var(--header-height) + 40px);
  }
}
.about-page__title {
  margin-bottom: 16px;
  max-width: 870px;
}
.about-page__sub-title {
  font-size: 6.4rem;
  font-weight: 500;
  text-align: center;
}
.about-page__desc {
  margin-bottom: 60px;
  max-width: 1035px;
}
.about-page__sub-desc {
  max-width: 768px;
  margin: 16px auto 60px;
  text-align: center;
}
.about-page__story {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 66px;
}
@media (max-width: 767.98px) {
  .about-page__story {
    margin-top: 80px !important;
  }
}
@media (max-width: 1199.98px) {
  .about-page__story {
    margin-top: 100px;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.about-page__story-img {
  object-fit: cover;
  width: 50%;
  height: 670px;
}
@media (max-width: 991.98px) {
  .about-page__story-img {
    height: 400px !important;
  }
}
@media (max-width: 767.98px) {
  .about-page__story-img {
    height: 300px !important;
  }
}
@media (max-width: 575.98px) {
  .about-page__story-img {
    width: 100%;
  }
}
.about-page__story-img--height {
  height: 501px;
}
@media (max-width: 1199.98px) {
  .about-page__story-img--height {
    height: 670px;
  }
}
.about-page__story-img--translate {
  width: 470px;
  height: 590px;
  margin: -205px 0 0 70px;
}
@media (max-width: 1199.98px) {
  .about-page__story-img--translate {
    display: none;
  }
}
.about-page__story-row {
  display: flex;
  gap: 30px;
}
@media (max-width: 575.98px) {
  .about-page__story-row:nth-child(1) {
    flex-wrap: wrap;
  }
}
.about-page__story-row:nth-child(2) {
  gap: 60px;
}
@media (max-width: 1199.98px) {
  .about-page__story-row:nth-child(2) {
    flex-direction: column;
  }
}
.about-page__story-title {
  font-size: 6.4rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .about-page__story-title {
    font-size: 5.6rem !important;
  }
}
@media (max-width: 767.98px) {
  .about-page__story-title {
    font-size: 3.8rem !important;
  }
}
.about-page__story-desc {
  margin-top: 16px;
}
.about-page__mission {
  margin-top: 75px;
}
.about-page__mission-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  height: 100%;
  justify-content: center;
}
.about-page__mission-item {
  display: flex;
  align-items: center;
  gap: 34px;
}
.about-page__mission-title {
  font-size: 2.4rem;
  font-weight: 500;
}
.about-page__mission-desc {
  margin-top: 8px;
  width: 358px;
}
.about-page__mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--primary-color);
}
.about-page__mission-img {
  width: 100%;
  height: 574px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .about-page__mission-img {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .about-page__mission-img {
    height: 300px;
  }
}
.about-page__separate {
  margin: 75px 0 !important;
}

.contact {
  margin: calc(var(--header-height) + 75px) 0 150px;
}
@media (max-width: 767.98px) {
  .contact {
    margin: calc(var(--header-height) + 50px) 0 100px;
  }
}
.contact__title, .contact__sub-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 125%;
}
.contact__title {
  margin: 13px 0 19px;
}
.contact__desc {
  margin-bottom: 24px;
  max-width: 500px;
}
.contact__row {
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  transition: background-color 0.2s;
}
.contact__row:hover {
  background-color: rgba(94, 97, 97, 0.1019607843);
}
.contact__row-icon {
  width: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn {
  margin-top: 44px;
  background: var(--primary-color) !important;
  padding: 0 32px !important;
  color: #fff;
  font-weight: 600 !important;
}
.contact-btn__submit {
  margin-top: 60px;
  width: 116px !important;
}
.contact-img-wrap {
  position: relative;
  padding-top: 117%;
}
@media (max-width: 991.98px) {
  .contact-img-wrap {
    padding-top: 87%;
    margin-top: 50px;
  }
}
.contact__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__bottom {
  margin-top: 150px;
}
@media (max-width: 767.98px) {
  .contact__bottom {
    margin-top: 100px;
  }
}
.contact__label {
  margin: 20px 0 18px;
}
.contact__time {
  margin-top: 13px;
}

@media (max-width: 991.98px) {
  .contact__form {
    margin-top: 80px;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .contact__form {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .contact__form-row {
    flex-direction: column;
    gap: 40px !important;
    margin-top: 40px !important;
  }
}
.contact__form-row + .contact__form-row {
  flex: 1;
  margin-top: 30px;
}
.contact__form-group {
  width: 100% !important;
}
.contact__form-act {
  display: inline-block;
  margin-top: 40px;
}

.product {
  margin: 100px 0;
}
@media (max-width: 991.98px) {
  .product {
    margin: 70px 0;
  }
}
.product__inner {
  padding-top: 0;
}
.product-img__wrap {
  position: relative;
  padding-top: 108%;
}
@media (max-width: 991.98px) {
  .product-img__wrap {
    padding-top: 60%;
    margin-bottom: 30px;
  }
}
.product__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .product__title {
    font-size: 4.2rem;
  }
}
@media (max-width: 991.98px) {
  .product__title {
    font-size: 4.2rem !important;
  }
}
.product__judge {
  margin: 9px 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product__judge-text {
  font-size: 1.4rem;
}
.product__price {
  font-family: "Libre Bodoni";
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}
.product__desc {
  margin-top: 20px;
}
.product__ctrl {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 42px;
}
.product__input {
  display: flex;
  align-items: center;
  position: relative;
  height: 42px;
  border: 1px solid #fff;
  overflow: hidden;
}
.product__input-field {
  max-width: 50px;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  color: #fff;
  -moz-appearance: textfield;
}
.product__input-field::-webkit-outer-spin-button, .product__input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product__input-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
}
@media (max-width: 991.98px) {
  .product__input-btn {
    width: 36px;
  }
}
.product__input-btn--minus {
  border-right: 1px solid #fff;
}
.product__input-btn--plus {
  border-left: 1px solid #fff;
}
.product__btn {
  max-width: 169px;
  height: 42px !important;
  font-weight: 600 !important;
  background: var(--primary-color) !important;
}
.product__type {
  margin-top: 40px;
}
.product__type-text {
  margin-top: 12px;
}
.product__sub-title {
  font-size: 2.4rem;
  font-weight: 500;
}
.product-btn__submit {
  margin-top: 36px;
}

@media (max-width: 991.98px) {
  .product-tab {
    margin-top: 80px;
  }
}
.product-tab__list {
  display: flex;
  align-items: center;
  margin: -16px -21px;
}
.product-tab__item {
  padding: 16px 21px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 155.556%;
  user-select: none;
  white-space: nowrap;
}
.product-tab__item--current {
  color: #fff;
  border-bottom: 1px solid var(--primary-color);
}
.product-tab__item:not(.product-tab__item--current) {
  cursor: pointer;
}
.product-tab__contents {
  padding-top: 47px;
}
.product-tab__content {
  display: none;
}
.product-tab__content--current {
  display: block;
}

.product__form-row {
  margin-top: 50px !important;
}
@media (max-width: 991.98px) {
  .product__form-row {
    flex-direction: column;
  }
}
.product__form-group {
  margin-top: 36px;
}

.cart {
  position: relative;
  margin: calc(var(--header-height) + 100px) 0;
}
@media (max-width: 767.98px) {
  .cart {
    margin-top: calc(var(--header-height) + 60px);
  }
}
.cart__top {
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.cart__image {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .cart__image {
    position: relative;
    margin-top: 60px;
    flex-direction: column;
    gap: 14px;
  }
}
.cart__top-info {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 575.98px) {
  .cart__top-info {
    margin-left: -15px;
  }
}
@media (max-width: 767.98px) {
  .cart__top-info .cart__desc:first-child {
    display: none;
  }
}
.cart__ctrl {
  padding: 4px 20px;
}
@media (max-width: 767.98px) {
  .cart__ctrl {
    position: absolute;
    top: -60px;
    left: calc(180% - 30px);
  }
}
.cart__img {
  display: block;
  margin: 0 auto;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .cart__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }
}
.cart__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 155.556%;
}
.cart__title--center {
  text-align: center;
}
.cart__desc {
  line-height: 162.5%;
}
@media (max-width: 991.98px) {
  .cart__desc {
    max-width: 100px;
  }
}
@media (max-width: 767.98px) {
  .cart__desc {
    text-align: center;
  }
}
.cart__bottom {
  margin-top: 100px;
  width: 50%;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .cart__bottom {
    width: 100%;
  }
}
.cart__bottom-inner {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
}
.cart__bottom-title {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 133.333%;
}
@media (max-width: 991.98px) {
  .cart__bottom-title {
    text-align: center;
  }
}
.cart__bottom-info {
  margin-top: 56px;
}
.cart__bottom-info--inline {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart__bottom-info:not(.cart__bottom-info--first) {
  margin-top: 30px;
}
.cart__bottom-info--no-margin {
  margin-top: 0 !important;
}
.cart__bottom-text {
  margin-top: 56px;
}
.cart__bottom-text:not(.cart__bottom-text--first) {
  margin-top: 30px;
}
.cart__bottom-text--no-margin {
  margin-top: 0 !important;
}
.cart__act {
  margin-top: 56px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .cart__act {
    margin-top: 0;
    padding: 0;
  }
}
.cart__act-left {
  display: flex;
  align-items: center;
  gap: 26px;
}
.cart__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  height: 42px;
  padding: 8px 30px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .cart__btn {
    padding: 16px;
  }
}
@media (max-width: 575.98px) {
  .cart__btn {
    font-size: 1.2rem;
  }
}
.cart__btn:hover {
  opacity: 0.9;
}
.cart__btn.cart__act-left {
  display: flex;
  align-items: center;
}
.cart__btn-coupon {
  max-width: 163px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
.cart__btn-apply {
  background: var(--primary-color);
}
.cart__btn-update {
  background: #fff;
  color: var(--bg-color);
}
.cart__btn-update:hover {
  background: var(--primary-color);
}
.cart__btn-checkout {
  margin-top: 22px;
  width: 100%;
  background: var(--primary-color);
}
@media (max-width: 991.98px) {
  .cart__btn-checkout {
    width: 50%;
    margin: 40px auto;
  }
}

.cart__form-group {
  width: 100% !important;
  margin-top: 32px !important;
}

.checkout {
  margin-top: calc(var(--header-height) + 96px);
}
@media (max-width: 575.98px) {
  .checkout {
    margin-top: calc(var(--header-height) + 66px);
  }
}
.checkout__info-title {
  font-size: 3rem;
}
.checkout__form {
  margin-top: 30px;
}
.checkout__form-row {
  display: flex;
  align-items: center;
  gap: 30px;
}
.checkout__form-row--item {
  max-width: 270px;
}
@media (max-width: 575.98px) {
  .checkout__form-row--item {
    min-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .checkout__form-row {
    flex-wrap: wrap;
  }
}
.checkout__form-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 162.5%;
}
.checkout__form-group {
  margin-top: 24px;
}
.checkout__bottom {
  margin: 60px 0 100px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.checkout__option {
  background: transparent;
  padding: 12px 0;
}
.checkout__option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}
.checkout__option input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 2.3px;
  left: 2.3px;
  width: 8px;
  height: 8px;
  background: #ff9900;
  border-radius: 50%;
}
.checkout__lbl {
  font-weight: bold;
  cursor: pointer;
  line-height: 162.5%;
}
.checkout__desc {
  font-size: 14px;
  color: #aaa;
  margin: 24px 0 0 44px;
}
.checkout__desc.no-m-left {
  max-width: 433px;
  margin-left: 0;
}
.checkout__policy {
  font-weight: normal;
  color: var(--primary-color);
}
.checkout__policy:hover {
  cursor: pointer;
  text-decoration: underline;
}
.checkout__order {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991.98px) {
  .checkout__order {
    margin-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .checkout__order {
    padding: 10px;
  }
}
.checkout__order-title {
  font-size: 3rem;
  line-height: 133.33%;
  margin-bottom: 38px;
}
.checkout__order-row {
  margin-top: 6px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.checkout__order-row:last-child {
  border: none;
}
.checkout__order-type {
  font-size: 1.8rem;
  font-weight: 600;
}
.checkout__order-qty {
  margin-left: 5px;
  font-weight: 600;
}

.header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: var(--bg-color);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 991.98px) {
  .top-bar {
    padding: 22px 0;
  }
}

.top-act {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
@media (max-width: 1199.98px) {
  .top-act {
    gap: 16px;
  }
}
@media (max-width: 767.98px) {
  .top-act__reserve {
    margin-left: 30px;
  }
}
.top-act__reserve:hover {
  color: #fff;
  text-decoration: underline;
}
.top-act__btn, .top-act__btn-wrap {
  display: flex;
  align-items: center;
}
.top-act__btn-wrap {
  position: relative;
  height: 50px;
  border-radius: 8px;
  background: transparent;
}
.top-act__btn-wrap:hover .act-dropdown {
  opacity: 1;
  visibility: visible;
  scale: 1;
}
.top-act__btn {
  padding: 13px 20px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .top-act__btn {
    padding: 13px 0;
  }
}
.top-act__icon {
  width: 28px;
  height: 28px;
}

.act-dropdown {
  position: absolute;
  top: 48px;
  right: -100%;
  padding-top: 28px;
  width: min(500px, 100vw);
  transition: opacity, visibility, scale;
  transition-duration: 0.5s;
  transform-origin: 70% top;
  opacity: 0;
  visibility: hidden;
  scale: 0;
}
.act-dropdown__inner {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: #242323;
}
.act-dropdown__arrow {
  position: absolute;
  top: -17px;
  right: 70px;
  height: 21px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(1515%) hue-rotate(322deg) brightness(98%) contrast(92%);
}
.act-dropdown__top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-dropdown__title {
  font-size: 2rem !important;
  font-weight: 500;
  line-height: 145.455%;
  color: var(--text-color);
  text-transform: none;
}
.act-dropdown__view-all {
  color: var(--primary-color);
  font-size: 1.8rem;
  line-height: 145.455%;
}
.act-dropdown__view-all:hover {
  text-decoration: underline;
}
.act-dropdown__bottom {
  margin: 20px 0;
  padding: 10px 0;
  border-width: 1px 0;
  border-color: var(--text-color);
  border-style: solid;
}
.act-dropdown__row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-dropdown__row--bold {
  font-weight: 500;
}
.act-dropdown__label, .act-dropdown__value {
  font-size: 1.8rem;
  line-height: 145.455%;
  color: var(--text-color);
}
.act-dropdown__checkout {
  display: flex;
  justify-content: flex-end;
}

.cart-preview-item {
  text-align: left;
  min-height: 270px;
}
.cart-preview-item__img-wrap {
  position: relative;
  padding-top: 100%;
}
.cart-preview-item__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-preview-item__title {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 142.857%;
  color: var(--text-color);
}
.cart-preview-item__price {
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 146.667%;
  color: var(--text-color);
}

.footer {
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer__row {
  display: grid;
  grid-template-columns: 3fr 1fr 2fr 1.5fr 2fr;
  gap: 60px;
}
@media (max-width: 1199.98px) {
  .footer__row {
    grid-template-columns: 2.5fr 1fr 2fr 1.2fr 1fr;
    gap: 60px;
  }
}
@media (max-width: 991.98px) {
  .footer__row {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .footer__col {
    padding-bottom: 14px;
    border-bottom: 1px solid #333;
  }
}
.footer__desc {
  margin-top: 76px;
  max-width: 211px;
}
@media (max-width: 991.98px) {
  .footer__desc {
    margin-top: 30px;
  }
}
.footer__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  width: 122px;
  height: 36px;
  object-fit: cover;
  gap: 18px;
}
@media (max-width: 1199.98px) {
  .footer__download {
    gap: 6px;
  }
}
.footer__heading {
  font-family: "Plus Jakarta Sans", serif;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
}
.footer__list {
  margin-top: 24px;
}
.footer__link, .footer__text {
  padding: 8px 0;
  line-height: 26px;
}
.footer__link {
  display: inline-block;
}
.footer__link:hover {
  color: var(--primary-color);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 56px;
  padding: 0 118px;
  background: var(--bg-color);
  font-size: 1.6rem;
  font-weight: 400;
  user-select: none;
}
.btn--small {
  width: 145px;
  height: 42px;
  background: var(--primary-color);
  font-weight: 600;
  color: #fff;
}
.btn--danger {
  background: #ed4337 !important;
}
.btn:hover {
  opacity: 0.9;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo__title {
  font-family: "Libre Bodoni", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 145.455%;
}

.hamburger {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1;
}
.hamburger span {
  display: block;
  margin-bottom: 5px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    inset: 0 50% 0 0;
    background: #2e2424;
    padding: 30px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    inset: 0 35% 0 0;
  }
}
.navbar__close-btn {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
}
.navbar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -17px;
}
@media (max-width: 991.98px) {
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.navbar__item {
  width: 100%;
}
.navbar__link {
  display: block;
  padding: 12px 16px;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}
.navbar__link:hover, .navbar__link:active {
  background: #3a2e2e;
  color: var(--primary-color);
}
.navbar__link.active {
  background: transparent;
  color: var(--primary-color);
}
@media (max-width: 991.98px) {
  .navbar__link {
    padding: 24px;
  }
}
.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9;
  display: none;
}
@media (max-width: 991.98px) {
  .navbar__overlay {
    display: block;
  }
}

#nav-toggle:checked ~ .navbar {
  transform: translateX(0);
}

#nav-toggle:checked ~ .navbar__overlay {
  opacity: 1;
  visibility: visible;
}

.nav-btn {
  height: 50px;
  padding: 0 40px;
  align-items: center;
}

.introduction__inner {
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  padding-bottom: 26px;
}
@media (max-width: 991.98px) {
  .introduction__inner {
    flex-direction: column;
  }
}
.introduction__content {
  flex: 1;
  margin-top: 54px;
}
.introduction__welcome, .introduction__desc {
  color: rgba(255, 255, 255, 0.8);
}
.introduction__title {
  margin: 10px 0 20px;
  font-size: 6.4rem;
  font-weight: 700;
}
@media (max-width: 1399.98px) {
  .introduction__title {
    max-width: 608px;
  }
}
@media (max-width: 1199.98px) {
  .introduction__title {
    max-width: fit-content;
  }
}
.introduction__desc {
  max-width: 532px;
  margin-bottom: 40px;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  .introduction__desc {
    max-width: 80%;
  }
}
.introduction__link {
  margin-top: 40px;
  color: var(--primary-color);
}
.introduction__link:hover {
  font-weight: 600;
}
.introduction__img {
  width: 100%;
  height: 436px;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .introduction__img {
    height: 296px;
  }
}

.sub__introduction {
  margin-top: 70px;
  font-family: "Libre Bodoni", serif;
}
.sub__introduction--second {
  margin-top: 81px;
}
@media (max-width: 991.98px) {
  .sub__introduction {
    margin-top: 30px;
  }
}
.sub__introduction-row {
  display: flex;
  padding: 60px 0;
  background: url(../img/introduction/cover.png) no-repeat center/cover;
}
@media (max-width: 991.98px) {
  .sub__introduction-row {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
.sub__introduction-row--second {
  justify-content: space-between;
  padding: 40px 40px;
  background: var(--primary-color);
}
@media (max-width: 991.98px) {
  .sub__introduction-row--second {
    padding: 30px 0;
  }
}
.sub__introduction-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}
.sub__introduction-item--second {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .sub__introduction-item--second {
    gap: 10px;
  }
}
.sub__introduction-item--second:nth-child(2) {
  margin: 0;
}
.sub__introduction-number {
  font-size: 6.4rem;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .sub__introduction-number {
    font-size: 5.6rem;
  }
}
.sub__introduction-type {
  max-width: 148px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 34px;
  flex-wrap: wrap;
}
.sub__introduction-type--second {
  font-size: 3.2rem;
  font-weight: 500;
  max-width: none;
  color: var(--bg-color);
}
@media (max-width: 1199.98px) {
  .sub__introduction-type--second {
    font-size: 2.8rem;
  }
}

.food {
  margin-top: 113px;
}
@media (max-width: 1199.98px) {
  .food {
    margin-top: 70px;
  }
}
@media (max-width: 991.98px) {
  .food {
    margin-top: 48px;
  }
}
.food__inner {
  padding: 48px 0;
}
@media (max-width: 767.98px) {
  .food__inner {
    padding: 0;
  }
}
.food__introduction {
  margin-bottom: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.food__title {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Libre Bodoni", serif;
  font-size: 6.4rem;
  font-weight: 500;
}
.food__desc {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
.food__item {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .food__item {
    margin-top: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7333333333);
    border-radius: 16px;
  }
}
.food__img-wrap {
  position: relative;
  padding-top: 81%;
}
.food__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.food__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.food__sub-title, .food__price {
  margin-top: 16px;
  font-family: "Libre Bodoni", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .food__sub-title, .food__price {
    font-size: 1.8rem;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .food__sub-title, .food__price {
    font-size: 2.4rem;
    line-height: 34px;
  }
}
.food__sub-desc {
  margin-top: 6px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991.98px) {
  .food__sub-desc {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.food__link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.food__order {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .food__order {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .food__order {
    font-size: 1.8rem;
    line-height: 26px;
  }
}
@media (max-width: 575.98px) {
  .food__order {
    margin-top: 30px;
  }
}
.food__stars {
  display: flex;
  gap: 6px;
}
@media (max-width: 991.98px) {
  .food__star {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 767.98px) {
  .food__star {
    width: 26px;
    height: 26px;
  }
}

.about {
  margin-top: 48px;
  padding: 54px 0;
}
@media (max-width: 1199.98px) {
  .about {
    margin-top: 0;
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .about {
    margin-top: 70px;
    padding: 0;
  }
}
.about__left-title, .about__right-title {
  font-family: "Libre Bodoni", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 34px;
}
.about__right-title {
  text-align: center;
  color: var(--bg-color);
}
.about__left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 360px;
  background: url(../img/about/cover.png) no-repeat center/cover;
}
.about__left-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  white-space: nowrap;
}
.about__right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 360px;
  background: var(--primary-color);
}
.about__right-content {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about__right-text {
  margin-top: 14px;
  color: var(--bg-color);
}

.menu {
  margin-top: 26px;
  padding: 70px 0;
}
@media (max-width: 1199.98px) {
  .menu {
    margin-top: 0;
    padding: 40px 0;
  }
}
.menu__choice-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .menu__choice-group {
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .menu__choice-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 575.98px) {
  .menu__choice-group {
    column-gap: 60px;
  }
}
.menu__choice-food {
  position: relative;
  font-family: "Libre Bodoni", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
  opacity: 0.8;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .menu__choice-food {
    font-size: 2.8rem;
  }
}
.menu__choice-input {
  display: none;
}
.menu__choice--all:checked ~ .menu__choice .menu__choice--all, .menu__choice--appetizer:checked ~ .menu__choice .menu__choice--appetizer, .menu__choice--soup:checked ~ .menu__choice .menu__choice--soup, .menu__choice--dessert:checked ~ .menu__choice .menu__choice--dessert, .menu__choice--drink:checked ~ .menu__choice .menu__choice--drink {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  opacity: 1;
}
.menu__choice--appetizer:checked ~ .menu__group .menu__list {
  transform: translateX(-100%);
}
.menu__choice--soup:checked ~ .menu__group .menu__list {
  transform: translateX(-200%);
}
.menu__choice--dessert:checked ~ .menu__group .menu__list {
  transform: translateX(-300%);
}
.menu__choice--drink:checked ~ .menu__group .menu__list {
  transform: translateX(-400%);
}
.menu__bottom {
  margin-top: 60px;
  min-height: 440px;
}
.menu__group {
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
.menu__list {
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;
}
.menu__left, .menu__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .menu__right {
    margin-top: 40px;
  }
}
.menu__item {
  min-height: 120px;
  font-family: "Libre Bodoni", serif;
}
@media (max-width: 991.98px) {
  .menu__item {
    border-bottom: 1px solid #333;
  }
}
.menu__item-link {
  display: flex;
  align-items: center;
}
.menu__item-thumb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .menu__item-thumb {
    width: 76px;
    height: 64px;
    border-radius: 999px;
  }
}
.menu__item-title {
  margin-left: 20px;
  width: 402px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 1199.98px) {
  .menu__item-title {
    max-width: 260px;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 34px;
  }
}
@media (max-width: 767.98px) {
  .menu__item-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 575.98px) {
  .menu__item-title {
    max-width: 50%;
    font-size: 2rem;
    line-height: 28px;
  }
}
.menu__item-price {
  margin-left: auto;
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 1199.98px) {
  .menu__item-price {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 36px;
  }
}
@media (max-width: 575.98px) {
  .menu__item-price {
    font-size: 2rem;
  }
}

.space {
  background: var(--space-bg-color);
  margin-top: 19px;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .space {
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .space {
    padding: 40px 15px;
  }
}
.space__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .space__content {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .space__content {
    gap: 10px;
  }
}
.space__image {
  width: 33.33%;
}
.space__thumb {
  margin-top: 30px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #fff;
}
.space__thumb--small {
  height: 285px;
}
@media (max-width: 991.98px) {
  .space__thumb--small {
    height: 245px;
  }
}
@media (max-width: 767.98px) {
  .space__thumb--small {
    height: 205px;
  }
}
@media (max-width: 575.98px) {
  .space__thumb--small {
    height: 165px;
  }
}
.space__thumb--large {
  height: 600px;
}
@media (max-width: 991.98px) {
  .space__thumb--large {
    height: 522px;
  }
}
@media (max-width: 767.98px) {
  .space__thumb--large {
    height: 444px;
  }
}
@media (max-width: 575.98px) {
  .space__thumb--large {
    height: 362px;
  }
}
.space__slider {
  margin-top: 40px;
}

.reserve {
  margin-top: 90px;
}
@media (max-width: 1199.98px) {
  .reserve {
    margin-top: 50px;
  }
}
.reserve__right {
  align-items: flex-start;
  padding: 0 40px;
  min-height: 394px;
}
@media (max-width: 575.98px) {
  .reserve__right {
    padding: 0 20px;
    align-items: center;
  }
}
.reserve__right-title, .reserve__right-number {
  font-family: "Libre Bodoni", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 50px;
  text-align: left;
}
@media (max-width: 575.98px) {
  .reserve__right-title, .reserve__right-number {
    text-align: center;
    font-size: 3.4rem !important;
  }
}
.reserve__right-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  color: var(--bg-color);
}
@media (max-width: 575.98px) {
  .reserve__right-info {
    width: 100%;
    justify-content: space-around;
    gap: 0;
  }
}
.reserve__right-text {
  font-family: "Libre Bodoni", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 34px;
}
.reserve__right-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.reserve__right-calendar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.reserve__right-month {
  font-size: 1.4rem;
}
.reserve__right-icon {
  width: 12px;
  height: 7px;
}
.reserve__left {
  min-height: 394px;
  background: url(../img/reserve/cover.png) no-repeat center/cover;
}
.reserve__btn {
  margin-top: 74px;
}
@media (max-width: 575.98px) {
  .reserve__btn {
    margin-top: 60px;
    padding: 0px 90px;
  }
}

.offer {
  margin-top: 55px;
  padding: 70px 0;
}
@media (max-width: 991.98px) {
  .offer {
    padding: 40px 0;
  }
}
.offer__inner {
  margin-top: 52px;
}
@media (max-width: 991.98px) {
  .offer__inner {
    margin-top: 30px;
  }
}
.offer__left {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: url(../img/offer/cover.png) no-repeat center/cover;
}
.offer__left-content {
  padding: 23px 30px;
}
.offer__left-heading {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 38px;
}
.offer__left-sale {
  font-family: "Playball", cursive;
  font-size: 8.4rem;
  letter-spacing: -6px;
  color: var(--primary-color);
}
.offer__left-text {
  margin-top: 49px;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 36px;
}
.offer__left-desc {
  margin-top: 19px;
  line-height: 26px;
  max-width: 254px;
}
.offer__btn {
  margin-top: 40px;
}
.offer__right {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 36px;
}
@media (max-width: 991.98px) {
  .offer__right {
    margin-top: 50px;
  }
}
.offer__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .offer__item-link {
    flex-direction: column;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7333333333);
    border-radius: 16px;
  }
}
.offer__item-thumb {
  width: 130px;
  height: 120px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .offer__item-thumb {
    width: 100%;
    height: 314px;
  }
}
.offer__item-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  margin-left: 28px;
}
@media (max-width: 575.98px) {
  .offer__item-info {
    width: 100%;
    margin: 20px 0 0;
  }
}
.offer__item-info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offer__item-heading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 34px;
}
.offer__item-desc {
  max-width: 323px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 575.98px) {
  .offer__item-desc {
    min-width: 100%;
  }
}
.offer__item-price {
  align-self: flex-start;
  font-family: "Libre Bodoni", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .offer__item-price {
    font-size: 2.4rem;
  }
}
@media (max-width: 575.98px) {
  .offer__item-price {
    font-size: 2.2rem;
  }
}

.chef__inner {
  margin-top: 150px;
}
@media (max-width: 1199.98px) {
  .chef__inner {
    margin-top: 100px;
  }
}
@media (max-width: 991.98px) {
  .chef__inner {
    margin-top: 70px;
  }
}
.chef__desc {
  max-width: 768px;
}
.chef__item {
  margin-top: 40px;
}
.chef__img-wrap {
  position: relative;
  padding-top: 120%;
}
@media (max-width: 767.98px) {
  .chef__img-wrap {
    padding-top: 70%;
  }
}
.chef__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #fff;
}
.chef__row {
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
}
.chef__sub-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 40px;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .chef__sub-title {
    font-size: 2.6rem;
  }
}
.chef__sub-desc {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  .chef__sub-desc {
    font-size: 1.6rem;
  }
}

.blog__introduction {
  text-align: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767.98px) {
  .blog__introduction {
    margin-bottom: 0;
  }
}
.blog__title {
  margin-top: 20px;
  font-size: 6.4rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .blog__title {
    margin-top: 0;
  }
}
.blog__inner {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .blog__inner {
    margin-top: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7333333333);
    border-radius: 16px;
  }
}
.blog__inner--second {
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  .blog__inner--second {
    margin-top: 60px;
  }
}
.blog__thumb {
  width: 100%;
  height: 348px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .blog__thumb {
    height: 296px;
  }
}
@media (max-width: 767.98px) {
  .blog__right {
    margin-top: 30px;
  }
}
.blog__sub-title {
  font-size: 3rem;
  margin: 20px 0;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .blog__sub-title {
    font-size: 2.6rem;
  }
}
@media (max-width: 767.98px) {
  .blog__sub-title {
    line-height: 34px;
  }
}
.blog__sub-desc {
  font-size: 1.8rem;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .blog__sub-desc {
    line-height: 24px;
  }
}
.blog__sub-row {
  margin: 30px 0 60px;
  display: flex;
  align-items: center;
  gap: 111px;
}
@media (max-width: 991.98px) {
  .blog__sub-row {
    margin: 20px 0 30px;
  }
}
@media (max-width: 575.98px) {
  .blog__sub-row {
    gap: 0;
    justify-content: space-between;
  }
}

.explore__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 60px;
  color: var(--primary-color);
}
.explore__link-icon {
  transition: translate 0.3s;
}
.explore__link:hover .explore__link-icon {
  translate: 5px;
}
@media (max-width: 991.98px) {
  .explore__link {
    margin-top: 60px;
  }
}

.letter {
  margin-top: 94px;
  background: url(../img/introduction/cover.png) no-repeat center/cover;
}
@media (max-width: 1199.98px) {
  .letter {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .letter {
    margin-top: 30px;
  }
}
.letter__inner {
  display: flex;
  align-items: center;
  min-height: 242px;
}
@media (max-width: 991.98px) {
  .letter__inner {
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    height: 302px;
  }
}
.letter__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991.98px) {
  .letter__content {
    text-align: center;
  }
}
.letter__title {
  font-size: 4rem !important;
  font-weight: 500;
  line-height: 50px;
}
.letter__desc {
  max-width: 405px;
  line-height: 26px;
}
.letter__form {
  width: 100%;
}

.form:has(:invalid) .form__submit-btn {
  opacity: 0.5;
  pointer-events: none;
}
.form__row {
  display: flex;
  gap: 30px;
}
.form__group {
  width: 63%;
  margin: 0 auto;
}
.form__group:focus + label {
  color: var(--primary-color);
}
.form__group--inline {
  display: flex;
  align-items: center;
}
.form__label {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 145.455%;
  color: #fff;
}
.form__label--small {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 142.857%;
}
.form__text-input {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  border-bottom: 1px solid #fff;
}
.form__text-input--small {
  height: 44px;
}
.form__text-input:focus-within .form__select-icon {
  transform: rotate(0deg);
}
.form__text-input:focus-within .form__select-dialog {
  opacity: 1;
  visibility: visible;
  translate: 0;
}
.form__input {
  flex: 1;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 26px;
  color: #fff !important;
}
.form__input::placeholder {
  color: var(--form-placeholder-color);
}
.form__input-icon {
  margin-left: 14px;
  transition: translate 0.3s ease;
}
.form__input-icon:hover {
  cursor: pointer;
  translate: 5px;
}
@media (max-width: 575.98px) {
  .form__input-icon {
    width: 40px;
    height: 20px;
  }
}
.form__input-icon-error {
  display: none;
  margin-left: 14px;
  animation: shake 0.5s;
}
.form__error {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 20px;
  color: #ed4337;
  display: none;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__text-input {
  border-color: #ed4337;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__error,
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__input-icon-error {
  display: block;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__input-icon {
  display: none;
}
.form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form__checkbox-label {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  line-height: 162.5%;
}
.form__checkbox-label::before, .form__checkbox-label::after {
  content: "";
  display: inline-block;
}
.form__checkbox-label::before {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}
.form__checkbox [type=checkbox]:checked ~ .form__checkbox-label::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.form__checkbox [type=checkbox]:checked ~ .form__checkbox-label::after {
  position: absolute;
  left: 3px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  rotate: -45deg;
}
.form__select-icon {
  transition: transform 0.3s;
  transform: rotate(-90deg);
}
.form__select-dialog {
  position: absolute;
  bottom: 44px;
  left: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: opacity, visibility, translate;
  transition-duration: 0.2s;
  min-width: 230px;
  max-height: 310px;
  padding-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #242323;
  background: #242323;
}
.form__select-dialog.show {
  opacity: 1;
  visibility: visible;
  translate: 0;
}
.form__dialog-heading {
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.form__close-dialog {
  font-size: 3rem;
  position: absolute;
  right: 0;
  padding: 12px 20px;
  opacity: 0.8;
}
.form__option-list {
  flex: 1;
  margin-top: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.form__option {
  font-size: 1.4rem;
  padding: 8px 20px;
}
.form__option--current {
  font-weight: 500;
  background: rgba(var(--primary-color), 0.6);
}
.form__option:hover:not(.form__option--current) {
  background: #000;
  cursor: pointer;
}

.agency {
  padding: 150px 0;
}
@media (max-width: 991.98px) {
  .agency {
    padding: 90px 0;
  }
}
.agency__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.agency__title {
  margin-bottom: 6px;
  font-size: 3rem;
  font-weight: 500;
}
.agency__direct {
  display: inline-block;
  width: 100%;
  margin-top: 34px;
  text-align: center;
  text-decoration: underline;
}
.agency__direct:hover {
  color: var(--primary-color);
}

.text-content {
  max-width: 770px;
  font-size: 1.6rem;
  line-height: 162.5%;
}
@media (max-width: 767.98px) {
  .text-content {
    min-width: 100%;
  }
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 600;
}
.text-content h1 {
  font-size: 5rem;
}
.text-content h2 {
  font-size: 4rem;
  line-height: 125%;
}
.text-content h3 {
  font-size: 3.6rem;
}
.text-content h4 {
  font-size: 3rem;
}
.text-content h5 {
  font-size: 2rem;
}
.text-content h6 {
  font-size: 1.8rem;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6,
.text-content blockquote,
.text-content p,
.text-content img,
.text-content figure,
.text-content ul,
.text-content ol,
.text-content table {
  margin: 20px 0;
}
.text-content img {
  margin: 60px 0;
  display: block;
  max-width: 100%;
}
.text-content img + em {
  display: block;
  font-style: italic;
  text-align: center;
}
.text-content a {
  color: #0071dc;
  text-decoration: underline;
}
.text-content blockquote {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(94, 97, 97, 0.1);
  border-left: 3px solid #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 145.455%;
  font-style: italic;
}
.text-content blockquote p {
  margin: 0;
}
.text-content b {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 50px;
  font-weight: 500;
  line-height: 92%;
  vertical-align: top;
}
.text-content strong {
  font-size: 1.8rem;
  color: #fff;
}
.text-content li {
  margin: 24px 0 0 15px;
  list-style: disc;
}

.review-card__top {
  margin-bottom: 60px;
}
@media (max-width: 575.98px) {
  .review-card__top {
    display: flex;
    flex-direction: column;
  }
}
.review-card__item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.4666666667);
}
.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__separate {
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.review-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 155.556%;
}
.review-card__date {
  font-size: 1.4rem;
}
.review-card__desc {
  margin: 16px 0 24px;
  line-height: 162.5%;
}

.message {
  padding: 14px;
  border-radius: 10px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.message--success {
  border: 1px solid #46a05c;
  background: rgba(39, 242, 117, 0.2);
}

.rating {
  direction: rtl;
  display: flex;
  gap: 5px;
}
.rating input {
  display: none;
}
.rating input:checked ~ label {
  filter: none;
}
.rating label {
  width: 20px;
  height: 20px;
  background: url("../icons/star.svg") no-repeat center/contain;
  filter: grayscale(100%) brightness(0.7);
  cursor: pointer;
  transition: filter 0.2s;
}
.rating label:hover, .rating label:hover ~ label {
  filter: none;
}

html {
  --primary-color: #fb8f2c;
  --bg-color: #111114;
  --text-color: #fff;
  --icon-color: brightness(0) saturate(100%) invert(98%) sepia(41%) saturate(0%) hue-rotate(10deg) brightness(103%)
      contrast(103%);
  --icon-menu-color: invert(65%) sepia(48%) saturate(2092%) hue-rotate(339deg) brightness(101%) contrast(97%);
  --form-placeholder-color: #807171;
}
@media (max-width: 767.98px) {
  html {
    --space-bg-color: #000000;
  }
}

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