@charset "UTF-8";
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;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth; /*cuộn mượt mà*/
}

body {
  font-size: 1.6rem;
  font-family: "Manrope", sans-serif;
  text-rendering: optimizeSpeed;
  background: #1d1d1d;
}

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

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

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

input,
textarea {
  background: transparent;
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 1);
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp.line-2 {
  --line-clamp: 2;
}

.line-clamp.line-3 {
  --line-clamp: 3;
}

.line-clamp.line-4 {
  --line-clamp: 4;
}

.line-clamp.line-5 {
  --line-clamp: 5;
}

.line-clamp.line-10 {
  --line-clamp: 10;
}

.actions {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #28a745;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 60px;
  height: 60px;
}

.btn-call {
  animation: shake 0.6s infinite;
}

.btn-fb {
  animation: bounce-shake 3s infinite;
  background-color: #4267b2;
}

.btn-cta svg {
  width: 100%;
}

@keyframes bounce-shake {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  10% {
    transform: translateY(-5px) rotate(2deg);
  }
  20% {
    transform: translateY(0px) rotate(-2deg);
  }
  30% {
    transform: translateY(-3px) rotate(1.5deg);
  }
  40% {
    transform: translateY(0px) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-2px) rotate(1deg);
  }
  60% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.heading {
  color: var(--White, #fff);
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 115.625%;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .heading {
    font-size: 4.8rem;
  }
}
@media (max-width: 575.98px) {
  .heading {
    font-size: 3.2rem;
  }
}

.desc {
  margin-top: 10px;
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 2rem;
  line-height: 162.5%;
}
@media (max-width: 1199.98px) {
  .desc {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.98px) {
  .desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 575.98px) {
  .desc {
    font-size: 1.4rem;
  }
}

.container {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199.98px) {
  .container {
    width: 1140px;
  }
}
@media (max-width: 991.98px) {
  .container {
    width: 100%;
  }
}

.header {
  position: relative;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding: 20px 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
  .header {
    padding: 20px 18px;
  }
}
.header__bar {
  width: 24px;
  height: 24px;
  display: none;
}

@media (max-width: 991.98px) {
  .header__bar {
    display: block;
  }
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991.98px) {
  .header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.header__list {
  display: flex;
  color: #fff;
}

@media (max-width: 991.98px) {
  .header__list {
    display: none;
  }
}
.header__link {
  padding: 18px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #bfbfbf;
}

.header__link--active {
  color: #fff;
}

.header__link:hover {
  color: #fff;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  height: 48px;
  background: orange;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 130px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .header__btn {
    display: none;
  }
}
.modal {
  position: fixed;
  z-index: 99;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: 0.3s;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal__container {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  padding: 30px;
  background: #292e39;
  width: 70vw;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.modal.show .modal__container {
  transform: translateX(0);
}

.modal__close {
  width: 24px;
  height: 24px;
}

.modal__content {
  margin-top: 30px;
}

.modal__link {
  display: block;
  font-size: 1.6rem;
  padding: 10px 0;
  color: #fff;
}

.modal__link:hover {
  text-decoration: underline;
}

.info {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  margin-top: 150px;
}
@media (max-width: 1199.98px) {
  .info {
    padding: 0 15px;
  }
}
@media (max-width: 991.98px) {
  .info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
    padding: 0 15px;
  }
}
@media (max-width: 575.98px) {
  .info {
    gap: 40px;
    margin-top: 50px;
  }
}
.info__left {
  padding-left: 15px;
}
@media (max-width: 575.98px) {
  .info__left {
    padding-left: 0;
  }
}
.info__bottom {
  flex-direction: row-reverse;
  padding-top: 100px;
}
@media (max-width: 991.98px) {
  .info__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    gap: 60px;
    margin-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .info__bottom {
    margin-top: 50px;
  }
}
.info__desc {
  margin-top: 10px;
}
.info__right {
  width: 570px;
  height: 400px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .info__right {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .info__right {
    height: 230px;
  }
}
.info__list {
  margin-top: 15px;
  list-style: square;
}
.info__list--item {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 1.6rem;
  line-height: 162.5%;
}

.cook {
  padding-top: 100px;
  margin-top: 20px;
  padding-left: 15px;
}
@media (max-width: 991.98px) {
  .cook {
    padding-top: 60px;
  }
}
@media (max-width: 575.98px) {
  .cook {
    padding-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .cook__heading {
    margin-bottom: 30px;
  }
}
.cook p {
  margin-bottom: 20px;
}

.our {
  padding-top: 100px;
  margin-top: 20px;
  padding-left: 15px;
}
@media (max-width: 575.98px) {
  .our {
    padding-top: 50px;
  }
}
.our__bottom {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .our__bottom {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .our__bottom {
    margin-top: 30px;
  }
}
.our__item:not(:last-of-type) {
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .our__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.our__title {
  color: var(--White, #fff);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 141.667%;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.our__img {
  flex-shrink: 0;
}
.our__img img {
  width: 100%;
}

.product {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .product {
    margin-top: 60px;
  }
}
@media (max-width: 575.98px) {
  .product {
    margin-top: 30px;
  }
}
.product__heading {
  padding-left: 15px;
}
.product__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
@media (max-width: 991.98px) {
  .product__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .product__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.product__img-wrap {
  display: flex;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .product__img-wrap {
    height: 370px;
  }
}
@media (max-width: 991.98px) {
  .product__img-wrap {
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .product__img-wrap {
    height: 230px;
  }
}
.product__img-wrap:hover img {
  scale: 1.2;
}
.product__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.footer {
  background-color: #0a0a0a;
  color: #f1f1f1;
  padding: 60px 0 20px;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__column {
  flex: 1 1 250px;
}
.footer__column a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 24px;
}
.footer__column a:hover {
  color: #ffcc00;
}
.footer__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #ffcc00;
}
.footer__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}
.footer__subtitle {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #dddddd;
}
.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaaaaa;
}

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