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

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;
}

.feature__content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.about, .feature, .experience, .special {
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

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

html {
  font-family: "Inter", "Playwrite VN", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding: 10rem;
}

body {
  font-size: 1.6rem;
  background: #1e2e3b;
}

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

a {
  text-decoration: none;
}

img {
  user-select: none;
  pointer-events: none;
}

.typing-effect {
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.2rem solid #fff;
  width: 20ch;
  margin: 0 auto;
}

.red-text-color {
  color: red;
  display: inline-block;
}

.logo {
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 1.5em;
}
.logo__img {
  width: 8em;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.logo__name {
  text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 2.5em;
  font-family: "Pacifico", sans-serif;
  letter-spacing: 0.4em;
  line-height: 1.2;
}

.section-heading {
  font-family: "Pacifico", sans-serif;
  font-size: 2.8rem;
  line-height: 2.2rem;
  margin-bottom: 1.1rem;
}

.section-desc {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: justify;
}

.section-slogan {
  margin-top: 2.2rem;
  line-height: 1.5;
  font-size: 2.6rem;
  font-weight: 700;
}

.tall {
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* Header */
.header__inner {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.header.scrolled {
  background: #000;
}

.mobile-header {
  display: none;
}

.navbar__list {
  display: flex;
  align-items: center;
}
.navbar-item:hover .navbar-item__link {
  color: red;
}
.navbar-item__link {
  color: #fff;
  padding: 0 1.6rem;
  transition: ease 0.3s;
  display: inline-block;
  font-size: 1.8rem;
  opacity: 1;
  text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.6);
}

.bar-icon {
  color: #fff;
  height: 4rem;
  width: 4rem;
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: ease 0.3s;
}

.menu-drawer {
  position: fixed;
  inset: 0 30% 0 0;
  background: #000;
  z-index: 2;
  translate: -100% 0;
  transition: ease 0.3s;
}

.menu-checkbox:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

.menu-checkbox:checked ~ .menu-drawer {
  translate: 0;
}

/* Hero */
.hero {
  position: relative;
}
.hero__img {
  width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.5;
  pointer-events: none;
}
.hero__img-media {
  background: #000;
}
.hero__content {
  color: #fff;
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -40%;
  text-align: center;
  text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.6);
}
.hero__title {
  line-height: 1.5;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Pacifico", sans-serif;
}
.hero__desc {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.hero__caption {
  margin-top: 2rem;
  font-style: italic;
}

/* About */
.about {
  background: url("/assets/img/about-bg-01.jpg") no-repeat center fixed;
  background-size: cover;
  padding: 10rem 0;
  min-height: 100%;
}
.about__img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.about__caption {
  margin-top: 3rem;
}
.about__desc {
  margin-top: 1.6rem;
  text-align: justify;
}

/* Feature */
.feature {
  background: url("/assets/img/about-bg-03.jpg") no-repeat center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}
.feature__content {
  width: 100vw;
  text-align: center;
  padding: 10rem 20vw;
  background: rgba(0, 0, 0, 0.6);
}
.feature__content > * {
  text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.6);
  color: #fff;
}

/* Experience */
.experience {
  position: relative;
  background: url("/assets/img/experience-bg-01.jpg") no-repeat center fixed;
  background-size: cover;
  min-height: 100vh;
  padding: 5rem 0;
}
.experience__content {
  text-align: center;
  margin: 5rem 0;
}
.experience__media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-auto-rows: 10rem;
  gap: 1.6rem;
  grid-auto-flow: dense;
}
.experience__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Special */
.special {
  position: relative;
  background: url("/assets/img/delivery-bg-01.jpg") no-repeat center fixed;
  background-size: cover;
  padding: 10rem 0;
}
.special__img {
  width: 50rem;
  height: 50rem;
  object-fit: cover;
}
.special__content {
  text-align: center;
  color: #fff;
}
.special__list {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.special-item {
  display: flex;
  justify-content: center;
}
.special-item__img {
  width: 70rem;
  height: 50rem;
  object-fit: cover;
  object-position: 50% 50%;
}
.special-item__content {
  width: 50rem;
  margin-left: -12rem;
  margin-top: 5rem;
  padding: 3rem;
  background: #fff;
}

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