@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,400&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-size: 1em;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #004744;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.home {
    background: url(../images/bg-home.png) no-repeat no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.home::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background-image: linear-gradient(
        180deg,
        rgb(93, 91, 91) 0%,
        rgba(202, 202, 202, 0.28),
        rgba(244, 244, 244, 0) 100%,
        transparent
    );
}

.post_detail {
    background: url(../images/bg-post-detail.png) no-repeat no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.post_detail::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 12%;
    z-index: -1;
    background-image: linear-gradient(
        180deg,
        rgb(122, 120, 120) 0%,
        rgba(235, 232, 232, 0.2) 60%,
        transparent
    );
}

.post {
    background: url(../images/bg-home.png) no-repeat no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.post::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    z-index: -1;
    background-image: linear-gradient(
        180deg,
        rgb(93, 91, 91) 0%,
        rgba(202, 202, 202, 0.28) 20%,
        rgba(244, 244, 244, 0) 100%,
        transparent
    );
}

.btn {
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s linear;
}
.btn:hover {
    box-shadow: 0px 3px 22px rgba(250, 248, 101, 0.48);
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
}
.breadcrumb-item + .breadcrumb-item:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
    font-weight: 400;
    color: #004744;
}
.breadcrumb-item.active {
    color: #3a3a3a;
}
.breadcrumb-item a {
    text-decoration: none;
    color: #004744;
}

.logo-image {
    height: 90px;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 999;
}
.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: all 0.2s linear;
}
.header.sticky:hover {
    opacity: 1;
}
.header.sticky .menu .menu-link {
    color: inherit;
}
.header.sticky .menu .menu-link::before {
    background-image: linear-gradient(to bottom, #ffc000, #f9ff66 80%);
}
.header.sticky .search .search-button svg > g > path {
    stroke: #004744;
}
.header.sticky .search input {
    color: inherit;
}
.header.sticky .search input::placeholder {
    color: inherit;
}
.header.sticky .language-button,
.header.sticky .navbar-mobile-button {
    color: inherit;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-image {
    height: 61px;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 67px;
}
.menu-item {
    position: relative;
}
.menu-link {
    text-decoration: none;
    color: #ffffff;
    position: relative;
    font-weight: 300;
}
.menu-link.active {
    font-weight: 400;
    opacity: 100%;
}
.menu-link:before {
    position: absolute;
    content: "";
    height: 3px;
    width: 100%;
    left: 0;
    top: calc(100% + 4px);
    border-radius: 1px;
    background-image: linear-gradient(to bottom, #ffc000, #f9ff66);
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.menu-link:hover:before {
    transform-origin: 0 50%;
    transform: scale3d(1, 1, 1);
    transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}
.menu-link.active:before {
    transform: scale3d(1, 1, 1);
}

.submenu-wrapper {
    transform-origin: center;
    transform: scale(0);
    transition: 0.25s ease-in-out;
}

.submenu {
    --top-height: 10px;

    position: absolute;
    background: rgba(224, 225, 230, 1);
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + var(--top-height));

    list-style: none;
    border-radius: 4px;
}
.submenu::before {
    position: absolute;
    content: "";
    background: transparent;
    left: 0;
    width: 100%;
    height: var(--top-height);
    top: calc(var(--top-height) * -1);
}

.submenu-link {
    padding: 8px 16px;
    display: inline-block;
    width: 100%;

    text-decoration: none;
    font-weight: 300;
    transition: all 0.2s linear;
}
.submenu-link:hover {
    box-shadow: rgb(149 157 165 / 50%) 0px 0px 24px;
}
.menu-item:hover > .submenu-wrapper {
    transform: scale(1);
}

.navbar_right {
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.search {
    position: relative;
}
.search-field {
    position: absolute;
    height: 40px;
    border: 1px solid #ffc000;
    border-radius: 100rem;
    padding: 11.5px;
    display: flex;
    align-items: center;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.22);
}
.search-input {
    color: #ffffff;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}
.search-input::placeholder {
    color: #ffffff;
    font-weight: 300;
    opacity: 0.7;
}
.search-input.fucus {
    width: 200px;
}
.search-button {
    width: 15px;
    height: 15px;
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-button,
.navbar-mobile-button {
    width: 40px;
    height: 40px;
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffc000;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}
.navbar-mobile-button {
    display: none;
}

.navbar-mobile {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.navbar-mobile--overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    inset: 0;
}

.navbar-mobile {
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.navbar-mobile.show {
    transform: translateX(0);
    opacity: 1;
}

.navbar-mobile-wrapper {
    position: fixed;
    background: #fff;
    height: 100%;
    width: 250px;
}

.menu-mobile-title {
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 1.5em;
}

.menu-mobile-search {
    margin: 10px;
    border: thin solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 4px;
}

.menu-mobile-search-input {
    border: 0;
}
.menu-mobile-search-input:focus {
    caret-color: #ffc000;
}
.menu-mobile-search-input::placeholder {
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.8em;
}

.menu-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.menu-mobile-item {
    border-bottom: thin solid rgba(0, 0, 0, 0.04);
}
.menu-mobile-item:last-child {
    border-bottom: 0;
}

.menu-mobile-link {
    padding: 8px 16px;
    display: block;
    position: relative;
    font-weight: 300;
}
.menu-mobile-link.active {
    font-weight: 400;
    opacity: 100%;
    color: transparent;
    background-image: linear-gradient(to right, #ffa400, #00aefd);
    -webkit-background-clip: text;
}

.banner {
    padding-top: 100px;
}

.banner-heading {
    font-weight: 600;
    color: #ffffff;
    font-size: 2.8em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-heading--highlight {
    display: block;
    color: transparent;
    background-image: linear-gradient(to top, #ffc000 0%, #f8ff00 60%);
    -webkit-background-clip: text;
}

.banner-des {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.banner-contact-button {
    padding: 12px 50px;
    color: #352800;
    border: 1px solid #ffffff;
    background-image: linear-gradient(45deg, #ffc000, #f8ff00);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 2px 4px 14px;
}

.banner-path {
    margin-top: 60px;
    width: 50px;
}

.banner-image-img {
    position: absolute;
    right: -150px;
    height: 1000px;
    top: 45px;
    z-index: 0;
}

.services {
    padding-top: 60px;
}

.services-head {
    position: relative;
    text-align: center;
}

.services-head--title {
    font-size: 5em;
    font-weight: 800;
    line-height: 80px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.7);
    -webkit-text-stroke-width: 0.5px;
    margin-bottom: 20px;
}

.services-head-subtitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
}

.services-des {
    text-align: center;
}

.services-list {
    margin-top: 50px;
}

.services-item {
    margin-bottom: 24px;
}

.card {
    position: relative;
    height: 100%;
    background-image: linear-gradient(rgb(81, 81, 81), rgb(19, 20, 19));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}
.card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.card::after {
    position: absolute;
    content: "";
    inset: 0;
    margin: 8px;
    background-image: linear-gradient(
        to bottom,
        rgba(108, 253, 242, 0.79) 0%,
        rgba(255, 255, 255, 0.06) 80%
    );
    background-image: linear-gradient(
        to bottom,
        rgba(108, 253, 242, 0.79) 0%,
        rgba(255, 255, 255, 0.06) 80%
    );
    z-index: 1;
    border-radius: 10px;
}

.card::before {
    position: absolute;
    content: "";
    inset: 0;
    margin: 9.5px;
    background-image: linear-gradient(rgb(81, 81, 81), rgb(19, 20, 19));
    z-index: 2;
    border-radius: 10px;
    border: 1px solid #707070;
}

.card-body {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 8px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: linear-gradient(
        to bottom,
        rgba(112, 255, 244, 0.26) 0%,
        rgba(249, 255, 102, 0.3) 90%
    );
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30%);
    transition: all 0.25s ease-in-out;
}

.services-image {
    height: 250px;
    object-fit: contain;
    flex-shrink: 0;
    margin-bottom: 40px;
}

.services-name {
    font-size: 1.3em;
    text-transform: uppercase;
    color: #ffc000;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.services-detail {
    text-align: center;
    color: #ffffff;
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.services-detail p {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.services-view-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 6px;
    background-image: linear-gradient(rgb(108, 253, 242), rgb(249, 255, 102));
}

.about {
    padding-top: 60px;
}

.about-head {
    position: relative;
    text-align: center;
}

.about-head--title {
    font-size: 5em;
    font-weight: 800;
    line-height: 80px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.7);
    -webkit-text-stroke-width: 0.5px;
    margin-bottom: 20px;
}

.about-head-subtitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6em;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
}

.about-des {
    margin-bottom: 40px;
    text-align: center;
}

.about-view-detail {
    background-image: linear-gradient(-45deg, #ffd863, #f9ff66);
    padding: 10px 50px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Start: About product */
.about-product {
    margin-top: 60px;
}
.about-product .owl-stage {
    display: inline-flex;
}
.about-product .owl-carousel-item {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.about-product-items {
    --spacing: 38px;
    --column: 5;

    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--spacing) * -1);
}
.about-product-item {
    width: calc(calc(100% / var(--column)) - var(--spacing));
    margin-left: var(--spacing);
    margin-bottom: var(--spacing);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-product-thumb {
    border-radius: 100rem;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border: 3px solid #ffffff;
    overflow: hidden;
    margin-bottom: 8px;
    flex-shrink: 0;
}
.about-product-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.25s linear;
    width: 100%;
    height: 100%;
}
.about-product-img:hover {
    transform: scale(1.25);
}
.about-product-name {
    text-transform: uppercase;
    font-weight: 600;
    cursor: text;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    flex: 1;
}
.about-product-year {
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    margin-top: auto;
}
.about-product-year > span {
    background: #fff;
    padding: 2px 18px;
    border-radius: 20rem;
}
.about-product .owl-dots {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 16px;
}

.about-product button.owl-dot > span {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #fff;
    border-radius: 100rem;
}

.about-product button.owl-dot.active > span {
    background-color: #004744;
}

/* End: About product */

.about-gallery {
    margin-top: 60px;
}

.about-gallery-item {
    height: 250px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 3px solid #ffffff;
    overflow: hidden;
}
.about-gallery-item:hover .about-gallery-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.about-gallery-image {
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: brightness(0.9);
}

.post-banner {
    background: url(../images/post-banner@2x.png) no-repeat top center;
    background-size: cover;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -150px;
    margin-bottom: 40px;
}
.post-banner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(30, 34, 40, 0.1), rgba(30, 34, 40, 0));
}
.post-banner-text {
    position: relative;
}
.post-banner-heading {
    font-size: 8em;
    text-transform: uppercase;
    color: transparent;
    font-weight: 600;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.7);
    -webkit-text-stroke-width: 0.5px;
}
.post-banner-subheading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f8ff00;
    font-size: 2.5em;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.post-list {
    padding-bottom: 30px;
}

.post-item {
    padding: 20px;
    margin-bottom: 30px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    background: rgb(224, 225, 230);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.post-thumbnail {
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
}

.post-count {
    position: absolute;
    background: rgb(255, 255, 255);
    padding: 8px 26px;
    border-top-left-radius: 14px;
    border-bottom-right-radius: 14px;
    font-weight: 600;
    font-size: 1.5em;
    color: rgb(255, 192, 0);
    text-shadow: rgba(0, 0, 0, 0.16) 0px 2px 3px;
    left: 0;
    top: 0;
    z-index: 5;
}

.post-thumbnail-image {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}
.post-thumbnail-image:hover {
    transform: scale(1.1);
}

.post-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-title {
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.post-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 1.2em;
    font-weight: 300;
}

.post-content-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-view-detail {
    padding: 12px 50px;
    border: 1px solid #ffffff;
    background-image: linear-gradient(45deg, #ffd863, #f9ff66);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 2px 4px 14px;
    transition: box-shadow 0.2s linear;
}
.post-view-detail:hover {
    box-shadow: 0px 3px 22px rgba(250, 248, 101, 0.48);
}

.post-date {
    font-size: 1.1em;
    color: #003247;
    opacity: 0.48;
    font-weight: 300;
    line-height: 60px;
}

.pagination {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-item:first-child .pagination-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.pagination-item:last-child .pagination-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pagination-link {
    margin-left: -1px;
    padding: 12px 20px;
    color: inherit;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 0.5px solid #ffffff;
    text-decoration: none;
    transition: all 0.2s linear;
}
.pagination-link:hover {
    box-shadow: 0px 3px 22px rgba(250, 248, 101, 0.48);
    background-image: linear-gradient(-45deg, rgb(255, 216, 99), rgb(249, 255, 102));
}
.pagination-link.active {
    background-image: linear-gradient(-45deg, rgb(255, 216, 99), rgb(249, 255, 102));
    box-shadow: 0px 3px 22px rgba(250, 248, 101, 0.48);
    font-weight: 500;
}

.main {
    padding-top: 150px;
    padding-bottom: 60px;
}

.post_detail-head {
    text-align: center;
    margin-bottom: 30px;
}

.post_detail--title {
    color: #000000;
    font-size: 2.2em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.post_detail--date {
    color: #3a3a3a;
    font-weight: 300;
}

.post_detail-content {
    display: flex;
    flex-direction: column;
    text-align: justify;
}
.post_detail-content img {
    margin-bottom: 30px;
    width: 100%;
    object-fit: cover;
}
.post_detail-content h1 {
    font-weight: 500;
    font-size: 1.7em;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content h2 {
    font-weight: 500;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content h3 {
    font-weight: 500;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content h4 {
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content h5 {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content h6 {
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #000000;
}
.post_detail-content p {
    margin-bottom: 10px;
    color: #000000;
    font-weight: 300;
    word-break: break-all;
}
.post_detail-content p:empty {
    display: none;
}

.footer {
    padding-top: 32px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(224, 225, 230) 4%);
}

.footer-wrapper {
    padding-top: 30px;
}

.footer-top {
    margin-bottom: 49px;
    padding: 90px 81px 40px 81px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: #e0e1e6;
    box-shadow: rgba(255, 255, 255, 0.75) -8px -8px 22px 0px, rgba(0, 0, 0, 0.13) 10px 10px 25px;
}

.footer-logo-image {
    object-fit: contain;
    height: 61px;
}

.footer-menu {
    list-style: none;
    position: relative;
}

.footer-menu--heading {
    position: absolute;
    top: -40px;
    font-size: 1.3em;
    color: #00345d;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-menu.info {
    list-style: none;
}

.footer-menu-item {
    display: flex;
    margin-bottom: 14px;
}
.footer-menu-item p {
    margin-left: 4px;
}

.footer-menu-item:last-child {
    margin-bottom: 0;
}

.footer-menu-link {
    text-transform: uppercase;
    position: relative;
}
.footer-menu-link:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    top: calc(100% + 4px);
    border-radius: 1px;
    background: #ffc000;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.footer-menu-link:hover:before {
    transform-origin: 0 50%;
    transform: scale3d(1, 1, 1);
    transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

.footer-bottom {
    padding-bottom: 32px;
}

.copy-right {
    line-height: 26px;
    text-align: center;
    font-weight: 300;
    color: #003247;
}
.copy-right--highlight {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.social {
    position: fixed;
    bottom: 75px;
    right: 20px;
    z-index: 999;
}
.social-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #ffffff;
    padding: 6px;
    border-radius: 100rem;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.social-item-image {
    width: 34px;
    height: 34px;
    border-radius: 100rem;
    object-fit: cover;
}

.to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: none;
    border-radius: 100rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-image: linear-gradient(-45deg, rgb(255, 216, 99), rgb(249, 255, 102));
    border: 1px solid #ffffff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: inherit;
}
.to-top-button:hover {
    box-shadow: 0px 3px 22px rgba(250, 248, 101, 0.48) !important;
}

@media screen and (max-width: 1024px) {
    .main {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .banner {
        position: relative;
        overflow: hidden;
        padding-bottom: 115px;
    }
    .banner-text {
        position: relative;
        z-index: 1;
    }
    .banner-des {
        text-shadow: 1px 1px rgb(35, 35, 34);
    }
    .banner-image-img {
        height: auto;
        right: -140px;
        top: 10px;
    }
    .services {
        padding-top: 0;
    }
    .about {
        padding-top: 90px;
    }
    .post-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .post-description {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    .footer-top {
        padding: 90px 20px 40px 20px;
    }
}

@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }
    .search {
        display: none;
    }
    /* .menu-mobile-search {
            display: none;
        } */
    .navbar-mobile-button {
        display: flex;
    }
    .banner {
        padding-bottom: 0;
    }
    .banner-text {
        top: -40px;
    }
    .services-head--title {
        font-size: 4em;
    }
    .about-product-items {
        --spacing: 38px;
        --column: 3;
    }
    .post-banner-heading {
        font-size: 5em;
    }
    .post-banner-subheading {
        font-size: 2em;
    }
    .post-thumbnail-image {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .post-content {
        margin-top: 14px;
    }
    .post-description {
        text-align: justify;
        -webkit-line-clamp: 5;
    }
    .post-view-detail {
        padding: 8px 20px;
    }
    .post-date {
        font-size: 0.9em;
    }
    .footer-top {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .footer-menu {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 375.98px) {
    .header.sticky {
        background: rgb(255, 255, 255);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .navbar {
        padding: 10px 0;
    }
    .navbar_right {
        gap: 10px;
    }
    .menu-mobile-search {
        display: flex;
    }
    .logo-image {
        height: 40px;
    }
    .language-button,
    .navbar-mobile-button {
        /* display: flex; */
        width: 30px;
        height: 30px;
        font-size: 0.9em;
        line-height: 0;
    }
    .banner-text {
        position: relative;
        top: 126px;
    }
    .banner-image-img {
        height: auto;
        right: -44px;
        top: -10px;
    }
    .services {
        padding-top: 150px;
    }
    .services-head--title {
        font-size: 4em;
    }
    .about-product-items {
        --spacing: 18px;
        --column: 3;
    }
    .post-banner {
        min-height: 250px;
        margin-bottom: 25px;
        margin-top: -100px;
    }
    .post-banner-heading {
        font-size: 4em;
    }
    .post-banner-subheading {
        font-size: 1.3em;
    }
    .post-list {
        padding-bottom: 20px;
    }
    .post-item {
        padding: 0;
        border-radius: 10px;
    }
    .post-content {
        margin-top: 0;
        padding: 10px;
    }
    .post-title {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
    .post-description {
        font-size: 0.9em;
        -webkit-line-clamp: 7;
    }
    .post-view-detail {
        padding: 8px 20px;
    }
    .post-date {
        font-size: 0.9em;
        line-height: inherit;
    }
    .post_detail--title {
        font-size: 1.3em;
    }
    .post_detail--date {
        font-size: 0.9em;
    }
    .post_detail-content h1 {
        font-size: 1.5em;
    }
    .post_detail-content h2 {
        font-size: 1.4em;
    }
    .post_detail-content h3 {
        font-size: 1.3em;
    }
    .post_detail-content h4 {
        font-size: 1.2em;
    }
    .post_detail-content h5 {
        font-size: 1.1em;
    }
    .post_detail-content h6 {
        font-size: 1em;
    }
    .post_detail-content p {
        margin-bottom: 10px;
        color: #000000;
        font-weight: 300;
        word-break: break-all;
    }
    .footer-logo {
        margin-bottom: 10px;
        display: block;
    }
    .social-list {
        gap: 10px;
    }
    .social-item-image {
        width: 28px;
        height: 28px;
    }
    .to-top-button {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
    }
}

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