/* ===== Reset & Base Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html,
* {
    font-family: "Noto Sans JP", sans-serif;
}


main {
    background-color: #FAFAFA;
    padding-top: 136px;
}


:root {
    /* Colors - Thay đổi theo màu từ Figma */
    --primary-color: #3B82F6;
    --secondary-color: #8B5CF6;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-color: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
}

/* ===== Container ===== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 240%;
    letter-spacing: 0%;
    color: #191D25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}

.header .navbar {
    padding: 20px 0px;
}

.header .container-fullwidth {
    max-width: 100%;
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: var(--bg-light);
}

/* ===== Hero Section ===== */
.hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

/* ===== Sections ===== */
section {
    padding: 120px 0;
}

section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===== About Section ===== */
.about {
    background-color: var(--bg-light);
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-item {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--bg-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Footer ===== */
.footer {
    color: white;
}

.footer p {
    margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.hidden {
    display: none;
}


.container-fullwidth {
    width: 100%;
    max-width: 1280px;
    padding: 0px 25px;
    margin: auto;
}

.logo img {
    max-height: 88px;
}

button {
    border: none;
    background-color: transparent;
}

.header .search {
    display: flex;
    margin-top: 24px;
}

.search .category {
    cursor: pointer;
    width: 264px;
    height: 38px;
    opacity: 1;
    border-radius: 4px;
    border-width: 1px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid #E6E6E6;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.search .category.active{
    opacity: 1 !important;
    color: #fff !important;
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%) !important;
}

@media screen and (min-width:992px) {
    .search .category:hover {
        opacity: 1 !important;
        color: #fff !important;
        background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%) !important;
    }
.selection .results-search span:hover {
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%);

}
}
@media screen and (min-width:992px)  {
      .search .category:hover svg path,
    .search .category:hover span {
        color: #FFFFFF !important;
        fill: #ffffff !important;
    }
}

.search .category.active svg {
    transform: rotate(180deg);
    top: 10px;
}

.search .category.active svg path,
.search .category.active span{
    color: #FFFFFF !important;
    fill: #ffffff !important;
}

.search .cateogry span {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;

}

select {
    width: 264px;
    height: 38px;
    border-radius: 4px;
    opacity: 1;
    gap: 8px;
    border-width: 1px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid #E6E6E6;
    color: #000000;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;

    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.form-control {
    width: 264px;
    height: 38px;
    border-radius: 4px;
    opacity: 1;
    gap: 8px;
    text-align: center;
    border-width: 1px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid #E6E6E6;
}

.form-control::placeholder {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    opacity: 1;
    color: #000000;
}

.search input {
    margin: 0px 40px 0px 15px;
    padding: 8px 12px;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.search input:focus {
    outline: none;
    border-color: none;
}

.search input:focus-visible {
    outline: none;
    outline-offset: 2px;
}

.search input:hover {
    border-color: #D1D5DB;
}

.search input:disabled {
    background-color: #F3F4F6;
    cursor: not-allowed;
    opacity: 0.6;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.right-header {
    background-color: #433934;
    width: 294px;
    opacity: 1;
    gap: 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.right-header span {
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 8%;
    text-align: center;
    color: #FFFFFF;

}

.right-header-box a {
    background-color: #F97129;
    width: 140px;
    height: 56px;
    opacity: 1;
    color: #fff;
    display: block;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: 600;

}

.right-header-box a:last-child {
    background-color: #FE452D;
    width: 154px;
    height: 56px;
    padding: 16px;
    color: #fff;
    display: flex;
    border-radius: 0px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    align-items: center;
    white-space: nowrap;
}

.right-header-box a img {
    width: 22px;
}

.right-header-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    background-color: #FAFAFA;
}

/* ===== Home Banner Section ===== */
.home-banner {
    padding: 0px 0 100px;
    background-color: #FAFAFA;
    position: relative;
    z-index: 9;
}

.home-banner .banner-card:before {
    display: none;
}

.homeBannerSwiper {
    padding: 20px 40px 60px;
}

.homeBannerSwiper .swiper-slide {
    width: 684px !important;
}

.banner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}



.banner-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-banner .banner-image img {
    height: 396px;
}

.banner-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 8px 8px 0px 0px;
}


.banner-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.banner-content {
    padding: 24px;
    background-color: #fff;
    border-radius: 0px 0px 8px 8px;
}

.banner-date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #F97129;
    margin-bottom: 10px;
}

.banner-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #191D25;
    min-height: 54px;
}

.banner-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-author {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Swiper Navigation */
.homeBannerSwiper .swiper-button-next,
.homeBannerSwiper .swiper-button-prev {
    display: none;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.homeBannerSwiper .swiper-button-next:after,
.homeBannerSwiper .swiper-button-prev:after {
    font-size: 20px;
    color: #1F2937;
    font-weight: bold;

}

.homeBannerSwiper .swiper-button-next:hover,
.homeBannerSwiper .swiper-button-prev:hover {
    background: #3B82F6;
}

.homeBannerSwiper .swiper-button-next:hover:after,
.homeBannerSwiper .swiper-button-prev:hover:after {
    color: white;
}

/* Swiper Pagination */
.homeBannerSwiper .swiper-pagination {
    bottom: 0px;
}

.homeBannerSwiper .swiper-pagination-bullet {
    width: 64px;
    height: 4px;
    opacity: 1;
    background: #D9D9D9;
    opacity: 1;
    border-radius: 0px;
    border: none;
}

.homeBannerSwiper .swiper-pagination-bullet-active {
    background: #FCC901;
}

.banner-category {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #191D25;
    border: 1px dashed #E6E6E6;
    min-width: 74px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.categories-wrapper {
    display: flex;
    gap: 8px;
    justify-content: end;
}

.selection {
    position: relative;
}

.selection .results-search {
    display: none;
    width: 518px;
    opacity: 1;
    border-radius: 8px;
    padding-top: 24px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    background: #FFFFFF;
    position: absolute;
    top: calc(100% + 30px);
}

.results-search form button {
    right: 0;
    top: auto;
    bottom: 20px;
    cursor: pointer;
}

.selection .results-search form {
    position: relative;
}

.selection .results-search form.active {
    display: block !important;
}

.selection .results-search.active {
    display: block;
}

.results-search .remove {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #00000099;
    display: block;
    text-align: right;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-right: 15px;
}

.results-categories {
    display: flex;
    gap: 14px;
    padding-right: 45px;
    flex-wrap: wrap;
}

.selection .results-search input {
    display: none;
}

.selection .results-search span {
    display: inline-block;
    opacity: 1;
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 14px;
    background: #000000;
    color: #FFFFFF;
    cursor: pointer;
}

.selection .results-search label.active span {
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%);

}

.selection svg {
    position: absolute;
    right: 5px;
    top: 44%;
    transform: translateY(-50%);
}

main {
    overflow: hidden;
}

/* ===== What's New Section ===== */
.whats-new {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.whats-new:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100px;
    top: 0;
    width: 255px;
    background-color: #FCC901;
}

.whats-new .banner-content {
    padding: 16px;
}

.whats-new .banner-card:before {
    display: none;
}

.ranking-section .banner-card:before {
    display: block;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 9;
}

.section-title-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    color: #191D25;
    margin: 0;
}

.section-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #191D25;
    position: relative;
    top: -8px;
    white-space: nowrap;
}

.section-decoration {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.decoration-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #FCC901 0%, transparent 100%);
}

.decoration-dot {
    width: 16px;
    height: 16px;
    background: #FCC901;
    border-radius: 50%;
    flex-shrink: 0;
}

/* What's New Swiper */
.whatsNewSwiper {
    position: relative;
    padding: 20px 0px;
    overflow: visible;
}

.whatsNewSwiper .swiper-slide {
    height: auto;
}

.whats-new .swiper-slide {
    height: auto;
    width: 390px !important;
}


.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F3F4F6;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #6B7280;
}

.news-title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: #191D25;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-author {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    color: #9CA3AF;
    margin-top: auto;
}

/* What's New Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 80px;
    height: 80px;
    background: #404040;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: white;
    font-weight: bold;
}


.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #191D25;
}

.swiper-button-next:after {
    background-image: url(../assets/images/Vector.png);
    content: '';
    width: 16px;
    height: 14px;
    background-size: cover;
}

.swiper-button-prev:after {
    background-image: url(../assets/images/Vector.png);
    content: '';
    width: 16px;
    height: 14px;
    transform: rotate(180deg);
    background-size: cover;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.swiper-button-next {
    right: 0;
    transform: translateX(50%);
}

.swiper-button-prev {
    right: 0;
    transform: translateX(-50%);
}

.whats-new .banner-title {
    font-size: 14px;
    font-weight: 500;
}

.whats-new .banner-date {
    font-size: 14px;
    font-weight: 500;
}

.whats-new .container-fullwidth {}

.section-title {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0%;
}

.section-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #191D25;
}

.section-title-box {
    display: flex;
    gap: 40px;
    flex-direction: row;
    align-items: end;
}

.circle-text {
    position: absolute;
    right: 0;
    top: -30%;
}

.circle-text img {
    width: 380px;
    animation: spin 10s linear infinite;
    transform-origin: 50% 50%;
    /* trọng tâm */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ranking-section {
    background-color: #F1F3F6;
    border-radius: 40px;
    padding: 120px 0px 100px;
    z-index: 9;
}

.ranking-section::after {
    display: none;
}

.ranking-section .swiper-button-prev {
    left: auto;
    right: 90px;
    margin-right: 15px;
}

.ranking-section .swiper-button-next,
.ranking-section .swiper-button-prev {
    transform: translateX(0%);
}

.ranking-section .section-header {
    margin: 0px 100px 50px 0px;
}

.number {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 32px;
    opacity: 1;
    gap: 8px;
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}

.ranking-section .swiper {
    padding: 50px 0px;
    overflow: visible;
}

.ranking-section .container-fullwidth {}

/* ===== Categories Section ===== */
.categories-section {
    padding: 135px 0 160px;
    background: #FFFFFF;
    position: relative;
}

.categories-section:after {
    content: '';
    background: #FAFAFA;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 254px;
    z-index: 1;
}

.category-decoration-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg, #00A2E8 0%, transparent 100%);
    opacity: 0.1;
}

.category-decoration-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 255px;
    background: #FCC901;
    top: -35px;
    bottom: 0;
    z-index: 8;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-section .section-header {
    margin-bottom: 60px;
    justify-content: center;
}

.categories-section .section-title-box {
    text-align: center;
}

.categories-content {
    max-width: 1280px;
    margin: 0 auto;
    background: #FAFAFA;
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0px 0px 8px 0px #CCCCCC80;
    z-index: 9;
    position: relative;
}

.categories-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 800px;
    margin: 0px auto 40px;
}

.categories-buttons-row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center;
}

.category-btn {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    background-color: #000000;
    color: #fff;
    border-radius: 4px;
    opacity: 1;
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
    height: 36px;
    display: block;
    line-height: 36px;

}



.category-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #F97129 0%, #FE452D 100%);
}

.category-search {
    position: relative;
    width: 480px;
    margin: 0 auto;
    height: 72px;
}

.category-search-input {
    box-shadow: 0px 0px 8px 0px #CCCCCC80;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    justify-content: space-between;
    opacity: 1;
    padding: 0px 15px;
    border: none;
}

.category-search-input:focus-visible {
    outline: none !important;
    outline-offset: 0px;
}

.category-search-input:focus,
.category-search-input:hover {
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px #CCCCCC80;
}

.category-search-input:focus {
    outline: none;
    border-color: #FCC901;
    box-shadow: 0 0 0 4px rgba(252, 201, 1, 0.1);
}

.category-search-input:focus-visible {
    outline: 2px solid #FCC901;
    outline-offset: 2px;
}

.category-search-input:hover {
    box-shadow: 0px 0px 12px 0px #CCCCCC99;
}

.category-search-input:disabled {
    background-color: #F9FAFB;
    cursor: not-allowed;
    opacity: 0.5;
}

.category-search-input::placeholder {
    color: #9CA3AF;
}

.category-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    z-index: 999;
    cursor: pointer;
}

.category-search-btn:hover {
    color: #191D25;
}

/* Responsive for Categories */
@media (max-width: 768px) {
    .categories-content {
        padding: 64px 10px;
    }

    .categories-buttons,
    .categories-buttons-row-2 {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
        text-align: center;
    }

    .category-decoration-right {
        width: 150px;
    }
}

.categories-section .container-fullwidth {
    /* padding: 0px 80px; */
}

.about-section {
    display: flex;
    gap: 160px;
    align-items: end;
    padding-top: 0px;
    position: relative;
    top: -40px;
    padding-bottom: 80px;
}

.about-section .img-left img {
    max-width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 9;
}

.about-section .text-content h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 55px;
}

.about-section .text-content {
    margin-right: 160px;
}

.about-section .text-content p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 240%;
    letter-spacing: 0%;
    margin-bottom: 0px;
    color: #191D25;

}

.description-section {
    padding-bottom: 20px;
    padding-top: 0px;
}

.description-section h2 {
    text-align: left;
}

.description-section h2 span {
    margin-bottom: 5px;
    text-align: left;
    font-weight: 700;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF;
    background-color: #FCC901;
    display: inline-block;
}

.products-section {
    padding-top: 0px;
}

.products-section .header-box {
    display: flex;
    gap: 40px;

    align-items: center;
    margin-bottom: 25px;
}

.products-section .header-box h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 0;
    text-align: left;
    white-space: nowrap;
}

.products-section .header-box span {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;

}

.products-section .header-box p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;

}

.shadow,
.box-white {
    background-color: #FFFFFF;
    box-shadow: 16px 16px 0px 0px #CCCCCC99;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 25px;
}

.ranking-section .number span {
    position: relative;
    z-index: 1;
}

.banner-card:before,
.banner-card:after {
    content: '';
    position: absolute;
    left: 16px;
    top: 16px;
    right: -16px;
    bottom: -16px;
    background-color: #cccccc;
    z-index: -1;
    border-radius: 8px;
}

.banner-card:before {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    right: -39px;
    left: auto;
    top: -10px;
    bottom: auto;
}

.product-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-lists .product-item {
    display: flex;
    gap: 25px;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 24px;
}

.product-lists .product-item img {
    width: 154px;
}

.product-lists .product-item h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
}

.product-lists .product-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 0px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-grid h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 25px;
}

.product-grid img {
    height: 102px;
    margin: 0px auto 24px;
    display: block;
}

.product-grid p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 0px;
    border-radius: 8px;
}

.product-grid .info {
    border: 1px solid #E6E6E6;
    padding: 24px;
    border-radius: 8px;
}

.media-section {
    background-color: #fff;
    position: relative;
    padding: 80px 0px 60px;
}

.media-section p>span {
    /* background-color: #FFDD3399; */
}

.media-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
}

.media-wrapper img {
    max-width: 640px;
}

.media-section h3 {
    font-weight: 700 !important;
font-size: 28px !important;
    line-height: 160%;
    letter-spacing: 0%;
    margin-bottom: 0;
}

.media-wrapper {}

.media-wrapper:after {
    content: '';
    width: 629px;
    position: absolute;
    bottom: 0;
    background-color: #FFDD33;
    right: 0;
    top: 0;
}

.right-img {
    position: relative;
    z-index: 1;
}

.right-img .logo {
    position: absolute;
    width: 216px;
    right: 8px;
    top: 8px;
}

.readmore-box {
    display: flex;
    justify-content: end
}

.button-readmore {
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF !important;
    background-color: #191D25;
    text-align: center;
    margin-top: 40px;
    display: flex !important;
    align-items: center;
    padding: 16px 19px;
    border-radius: 8px;
    white-space: nowrap;
}

.button-readmore:hover {
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%);

}

.button-readmore svg {
    margin-left: 5px;
    width: 24px;
}

.media-wrapper a {
    display: block;
    text-align: right;
    margin-top: 40px;
}

.media-wrapper a img {
    max-width: 270px;
}

.mb-35 {
    margin-bottom: 35px;
}

.contact-header .blur {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 5%;
    color: #191D2514;
    margin-bottom: 20px;
    display: block;
}

.contact-header h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #191D25;
    margin-bottom: 0px;
}

.contact-section {
    padding-bottom: 0px;
    background-color: #fff;
}

.contact-section .contact-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 9;
}

.contact-wrapper .img img {
    width: 596px;
    display: block;
}

.contact-wrapper a {
    display: block;
}

.contact-wrapper a img {
    display: block;
    width: 100%;
    height: 146px;
    margin: 1px;
}

.contact-wrapper a:not(:last-child) img {
    height: 128px;
}

.readmore {
    align-items: center;
    display: flex;
    margin: 120px auto 0;
    text-align: center;
    justify-content: center;
    width: 784px;
    height: 120px;
    border-radius: 72px;
    opacity: 1;
    gap: 24px;
    padding-top: 24px;
    padding-right: 56px;
    padding-bottom: 24px;
    padding-left: 152px;
    background: #F6C0D1;
    box-shadow: 16px 16px 0px 0px #CCCCCC99;
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    gap: 24px;
    position: relative;
    z-index: 9;
}

.readmore:hover {
    background: #F68FAF;
}

.readmore:hover span {
    color: #fff;
}

.readmore:hover svg rect {
    fill: #fff;
}

.readmore:hover svg path {
    fill: #191D25;
}

.readmore span {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 32px;
    color: #E07B99;
}

.readmore .left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 164px;
}

.readmore .right {
    position: absolute;
    right: -58px;
    bottom: -22px;
    width: 121px;
}

.readmore img {
    max-width: 784px;
    position: relative;
    z-index: 9;
}

.contact-boxx {
    position: relative;
    padding: 60px 0px 100px;
}

.contact-boxx:before {
    content: '';
    position: absolute;
    width: 254px;
    z-index: 1;
    bottom: 0;
    top: 0;
    left: 0;
    background-color: #FCC901;
}

.school-section {
    display: flex;
    padding-top: 20px;
    justify-content: end;
    gap: 72px;
    text-align: left;
    background-color: #fff;
}

.school-section h2 {
    text-align: left;
    margin-bottom: 30px;
}

.school-section img {
    max-width: 640px;
    border-radius: 4px;
}

.school-section .buttons img {
    max-width: 476px;
}

.school-section p {
    margin-bottom: 0px;
}

.school-section .text {
    margin-left: 80px;
}

.school-left .buttons {
    display: flex;
    margin-top: -8px;
    align-items: end;
    justify-content: space-between;
}

.school-section a img {
    max-width: 148px;
}

.banner-wrapper {
    display: flex;
    width: 100%;
    padding: 0px 64px;
    gap: 32px;
    justify-content: center;
    position: relative;
}

.banner-wrapper img {
    max-width: 640px;
}

.banner {
    padding-top: 0px;
    position: relative;
}

.banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F1F3F6;
    top: 30%;
}

.left-footer ul li a img {
    width: 48px;
}

footer {
    background-color: #F1F3F6;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
}

.left-footer {
    text-align: left;
}

.left-footer img {
    max-width: 472px;
}

.footer-logo img {
    max-width: 398px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-footer ul {
    margin: 24px 0px 60px;
}

.left-footer ul li {
    display: inline-block;
    margin: 0px 2px;
}

.footer {
    position: relative;
    padding: 100px 0px 65px;
}

.img-footer {
    position: absolute;
    right: 50px;
    max-width: 720px;
    bottom: 0;
}

.menu-footer {
    max-width: 390px;
}

.menu-footer ul li {
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 36px;
}

.menu-footer ul li a {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #191D25;
}

.menu-footer ul li a svg {
    margin-left: 5px;
}

.footer-box {
    margin-bottom: 10px;
}

.footer-box p {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
    color: #191D25;
    margin-bottom: 0px;
}

.right-footer p {
    font-weight: 300;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0%;
    margin-top: auto;
    text-align: right;
}

.right-footer {
    display: flex;
    flex-direction: column;
}

.header-page {
    justify-content: space-between;
    align-items: end;
    margin-bottom: 120px;
}

.breadcrumbs {
    width: 400px;
    text-align: right;
}

.breadcrumbs a {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #191D25;
    white-space: nowrap;
}

.breadcrumbs span {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #191D2566;
    display: inline-block;
    margin: 0px 5px;
    white-space: pre-wrap;
    text-align: left;
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    flex: 1;
}

.page-detail {
    flex: 1;
}

.single-article h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 180%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #191D25;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    background: #F1F3F6;
    border-left: 3px solid #191D25;
    text-align: left;
    margin-bottom: 35px;
}

.single-article h3,
.single-article h4,
.single-article h5,
.single-article h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 280%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: left;
    color: #191D25;
    padding-top: 8px;
    padding-right: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    border-bottom: 3px solid #191D25;
    margin-bottom: 35px;
}

.single-article h4,
.single-article h5,
.single-article h6 {
    padding-left: 0;
    border: none;
}

.single-article img {
    margin-bottom: 25px;
    width: 100%;
    display: block;
}

.comment-item .avatar img {
    width: 64px !important;
    border-radius: 50%;
    overflow: hidden;
}

.single-article p {
    margin-bottom: 35px;
    line-height: 200%;
}

.single-article .socials {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 80px 0px;
}

.single-article .socials span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #191D25;
    margin-right: 24px;
}

.single-article .socials a {
    display: block;
}

.single-article .socials ul li {
    display: inline-block;
    margin-bottom: 0px;
    margin-left: 5px;
}

.single-article .socials img {
    margin-bottom: 0px;
    display: block;
    width: 48px;
}

.articles-wrapper .banner-card:before,
.articles-wrapper .banner-card:after {
    display: none;
}

.page-has-sidebar {
    display: flex;
    gap: 78px;

}

.sidebar {
    width: 400px;
}

.sidebar img {
    max-width: 100%;
}

.sidebar .widget {
    margin-bottom: 30px;
}

.widget .banner-category {
    border: 1px solid #E6E6E6
}

.widget .banner-image {
    width: 138px;
    border-radius: 8px 0px 0px 8px;
}

.widget-news {
    border-radius: 8px;
    background-color: #EBF3F6;
    padding-top: 40px;
    padding-right: 24px;
    padding-bottom: 15px;
    padding-left: 24px;

}


.pagination {
    text-align: center;
    margin-top: 80px;
}

.pagination li {
    display: inline-block;
    margin: 0px 8px;
}

.pagination a,
.pagination span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    width: 40px;
    height: 40px;
    opacity: 1;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #191D25;
    border: 1px solid #191D25;
}

.pagination span {
    background-color: #191D25;
    color: #fff;
}

.search-page .header-page {
    margin-bottom: 50px;
}

.remove-tags {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.search-tags span {
    display: inline-block;
    margin-right: 5px;
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
    border-radius: 4px;
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    background-color: #000000;
    gap: 10px
}

.search-tags span svg {
    cursor: pointer;
}

.search-tags {
    display: flex;
    margin-bottom: 63px;
}

.page-404 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.page-404 p {
    margin: 40px 0px;
}

.page-404 .content {
    text-align: center;

    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
}

.page-404 a {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    width: 145;
    height: 52;
    gap: 8px;
    opacity: 1;
    border-radius: 8px;
    padding: 16px;
    background-color: #191D25;
}

.single {
    padding-bottom: 0px;
}

.single-header .section-title {

    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: left;
}

.section-title-box .date {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #F97129;
}

.section-title-box .categories {
    display: flex;
}

.single-header .section-title-box {
    display: block;
    flex: 1;
}

.single-header .categories {
    margin: 16px 0px;
}

.single-header .categories span a,
.single-header .categories span {
    font-weight: 700;
    font-size: 10px;
    line-height: 140%;
    letter-spacing: 0%;
    border-radius: 4px;
    padding-top: 6px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
    border: 1px solid #E6E6E6;
    color: #191D25;
}

.single .header-page {
    margin-bottom: 65px;
}

.single .breadcrumbs {
    display: flex;
    justify-content: end;
}

.contact-detail {
    padding: 0px 0px 50px;
}

.contact-detail .contact-boxx {
    padding: 0;
}

.contact-detail img {
    display: block;
    width: 100%;
    margin-bottom: 0px !important;
    height: auto;
}

.contact-detail .contact-wrapper a img {
    height: auto;
}

.contact-detail .contact-boxx:before {
    display: none;
}

.contact-detail .contact-box a {
    padding: 0px 24px;
    position: relative;
}

.contact-detail .contact-box a span {
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;

}

.contact-detail .contact-box a span.sub {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0px;
    display: block;
}

.contact-detail .contact-box a.call {
    background: #F1F3F6 !important;
}

.contact-detail a.call .text span {
    color: #191D25;
}

.contact-box a.call .text .sub {
    text-align: center;
}

.contact-detail a.call {
    justify-content: center;
}

.contact-detail .contact-box a.call svg {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-detail .contact-box a svg {
    width: 48px;
    height: 48px;
}

.contact-detail .contact-box a {
    min-height: 108px;
}

.contact-detail .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    align-items: center;
    margin-top: 1px;
}

.contact-detail .bottom {
    position: relative;
}

.contact-detail .readmore {
    height: 88px;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin: 33px 0px 0px;
}

.contact-detail .readmore .left {
    width: 140px;
}

.contact-detail .readmore svg {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 24px;
}

.contact-detail .readmore .right {
    position: absolute;
    right: 6px;
    bottom: -49px;
    width: 121px;
}

.contact-detail .readmore span {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
}

.contact-detail .contact-box {
    padding: 0px 0px 0px;
}

.contact-detail .contact-box a.call .text .sub {
    text-align: center;
}

.table-contents {
    margin-bottom: 40px;
    width: 100%;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 32px;
    padding-left: 40px;
    border-radius: 8px;
    background: #F1F3F6;
}

.table-contents p {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0%;
    text-align: center;
}

.table-contents ul li a,
.table-contents ul li {
    font-weight: 700;
    font-size: 15px;
    line-height: 200%;
    letter-spacing: 0%;
    color: #191D25;
    margin-bottom: 0px;
}

.table-contents ul {
    list-style-type: decimal;
}
.table-contents ul li ul {
    padding-left: 30px;
     list-style-type: decimal;
}

.table-contents ul li ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 200%;
    letter-spacing: 0%;
    color: #191D25;
}

.comments p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #191D25;
    margin-bottom: 24px;
}

.comment-item {
    display: flex;
    gap: 24px;

}

.comment-item h3 {

    font-weight: 700;
    font-size: 16px !important;
    line-height: 120%;
    letter-spacing: 0%;
    color: #191D25;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    padding: 0 !important;
    margin: 0 0px 15px !important;
    border: none !important;
}

.comment-item .info {
    position: relative;
    top: -2px;
}

.comment-item p {
    font-weight: 500;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: 0%;
    color: #191D25;
}

.comment-box {
    opacity: 1;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #F1F3F6
}

.realated-posts {
    border-radius: 24px;
}

.realated-wrapper {
    display: flex;
    gap: 56px;
}

.realated-posts {
    padding: 80px 0px;
    background: #F1F3F6;

}

.realated-posts .banner-card:before {
    display: none;
}

.link-news {
    position: relative;
    width: 264px;
    height: 38px;
    cursor: pointer;
    opacity: 1;
    margin-left: 15px;
    border-radius: 4px;
    color: #000000;
    border: 1px solid #E6E6E6;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.link-news:hover {
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%) !important;
    fill: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%) !important;

}

.link-news:hover {
    color: #FFF;
}

.search-box:hover span,
.search-box.active span {
    color: #fff;
}

.search-box .aa {
    display: none;
}

.search-box .init {
    display: block;
}

.search-box button {
    cursor: pointer;
}

.search-box button:hover .aa,
.search-box:hover button.aa,
.search-box button.active .aa {
    display: block;
}

.search-box button:hover .init,
.search-box:hover button.init,
.search-box button.active .init {
    display: none;
}

.search-box span {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;

}

.search {
    position: relative;
}

.search button {
    position: absolute;
    right: 0;
    right: -75px;
    top: 0;
}

.search-input-box {
    display: none;
    position: absolute;
    top: 100%;
    width: 560px;
    height: 152px;
    top: calc(100% + 30px);
    left: 0;
    padding: 40px;
    border-radius: 8px;
    background: #FFFFFF;
    transform: translateX(20%);

}

.search-input-box input {
    width: 480px;
    margin: 0px;
    height: 72px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 0px 8px 0px #CCCCCC80;
    justify-content: space-between;
    opacity: 1;
    padding: 0px;
    border-radius: 8px;
    border-width: 1px;

    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #00000033;
    padding-left: 15px;
    opacity: 1;
    padding-right: 60px;
}

input:focus {
    outline: none;
    border-color: none;
}

input:focus-visible {
    outline: 1px solid none;
    outline-offset: 2px;
}

input:hover {
    border-color: #D1D5DB;
}

input:disabled {
    background-color: #F9FAFB;
    cursor: not-allowed;
    opacity: 0.4;
}

.search-input-box input::placeholder {
    opacity: 0.2;
}

.search-input-box button {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%);
}

.list-news h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #191D25;
}

.widget .banner-content {
    padding: 15px;
    width: calc(100% - 138px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D9D9D9E5;
    opacity: 0.9;
    z-index: 998;
}

.header.open-search .navbar {
    background: #D9D9D9E5;
    opacity: 0.9;
}

.header.open-search .search-box a,
.header.open-search .category {
    background: #fff;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

.menu-mobile {
    display: none;
}

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}

.pc-flex {
    display: flex !important;
}

.pc-grid {
    display: grid !important;
}

.header svg {
    display: block;
}

.relatedPostsSwiper {
    padding-bottom: 20px;
    padding-right: 20px;
}

.relatedPostsSwiper .swiper-slide {
    width: 390px !important;
}

.articles-section {
    padding-top: 0px;
}

.banner-image img:hover {
    opacity: 0.8;
}

.contact-box {
    min-width: 764px;
}

.contact-box a span {
    display: inline-block;
}

.contact-box a {
    margin-bottom: 2px;
    background: linear-gradient(138.61deg, #FE452D 8.33%, #F97129 87.82%);
    min-height: 128px;
    display: flex;
    align-items: center;
    padding: 0px 80px;
    justify-content: space-between;
}

.contact-box a span {
    display: inline-block;
    font-weight: 400;
    font-size: 56px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.contact-box a span.sub {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-left: 16px;
}

.contact-box a svg {
    width: 72px;
    height: 72px;
}

.contact-box a.call .text .sub {
    display: block;
    text-align: right;
}

.contact-box a:nth-child(2) {
    background: linear-gradient(90deg, #06C755 0%, #4CC764 100%);
}

.contact-box a:nth-child(3) {
    background: #F1F3F6;
    padding: 22px 80px;
    color: #191D25;
}

.contact-box a:nth-child(3) span {
    color: #191D25;
}

.contact-box a:nth-child(1):hover {
    background: #FE452D;
}

.contact-box a:nth-child(2):hover {
    background: #06C253;
}

.contact-box a:nth-child(3):hover {
    background: #F1F3F6;
}

.contact-box a:hover svg rect {
    fill: #fff;
}

.contact-box a:hover svg path {
    fill: #191D25;
}

.widget-title>h3,
.widget-title {
    font-family: Outfit;
    font-weight: 500;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #191D25;
}

.widget-title span {

    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    display: inline-block;
    margin-left: 25px;
}

.widget-news .banner-card:before,
.widget-news .banner-card:after {
    display: none;
}

.widget-news .banner-card {
    display: flex;
    border-radius: 8px;
}

.widget-news .banner-image img {
    width: 138px;
    height: 138px;
    border-radius: 0px;
}

.widget-news .banner-content {
    padding: 15px;
    border-radius: 8px;
    width: calc(100% - 138px);
}

.widget-news .banner-date {

    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

}

.widget-news .banner-title {

    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;

}

.widget-news .banner-card {
    margin-bottom: 25px;
    box-shadow: none;
}

.widget-title {
    margin-bottom: 25px;
}

.widget-news .number {
    width: 40px;
    height: 40px;
    left: -30px;
    font-family: Outfit;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    top: 10px;
}

.widget-category {
    background-color: #F1F3F6;
}

.widget-category ul {
    background-color: #fff;
    padding: 8px 8px 4px;
    border-radius: 4px;
}

.widget-category ul li {
    display: inline-block;

    margin-bottom: 4px;
}

.widget-category ul li a {
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #191D25;
    gap: 8px;
    border-radius: 4px;
    padding-top: 6px;
    border: 1px solid #E6E6E6;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;
    border-width: 1px;

}

@media screen and (max-width: 1290px) {
    .header .search {}

    .banner-wrapper img {
        max-width: 100%;
    }

    .about-section {
        gap: 40px;
    }

    .about-section .text-content {
        margin-right: 20px;
    }

    .logo img {
        max-height: 60px;
    }
}

@media screen and (max-width: 992px) {
    .contact-box a {
        height: 95px;
        min-height: auto;
        margin-bottom: 1px;
        padding: 0px 10px !important;
    }

    .contact-box a span {
        font-weight: 400;
        font-size: 32px !important;
        line-height: 120% !important;
        letter-spacing: 0%;
    }

    .contact-box a span.sub {
        font-weight: 500;
        font-size: 12px !important;
        line-height: 140%;
        letter-spacing: 0%;
    }

    .contact-box a.call .text .sub {
        margin: 0;
        text-align: left;
    }

    .contact-box a span.sub {
        margin: 0;
        display: block;
        margin-top: 8px !important;
    }

    .contact-box a svg {
        width: 40px !important;
        height: 40px !important;
    }

    .relatedPostsSwiper .swiper-slide {
        width: 275px !important;
    }

    .contact-detail .contact-box a.call {
        justify-content: start;
    }

    .contact-detail .contact-box a.call svg {
        right: 10px;
    }

    .sp {
        display: block !important;
    }

    .pc-flex,
    .pc-flex,
    .pc-grid {
        display: none !important;
    }

    .pc {
        display: none !important;
    }

    .header .search {
        position: fixed;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 0;
        background-color: #fff;
        display: none;
        padding: 20px;
    }

    .header .search.active {
        display: flex;
        margin-top: 0;
        top: 100px;
    }

    .search .selection,
    .search .search-box {
        width: 50%;
    }

    .search .category {
        width: 100%;
    }

    .header.open-search .navbar {
        background-color: #fff;
        opacity: 1;
    }

    .search-input-box,
    .selection .results-search {
        top: 38px;
        width: calc(100vw - 40px);
        box-sizing: border-box;
    }

    .search-input-box {
        top: 38px;
        width: 100vw;
        left: auto;
        right: 0;
    }

    .search-input-box input {
        height: 48px;
        opacity: 1;
        border-radius: 8px;
        border-width: 1px;

    }

    .search-input-box input {
        width: 100%;
    }

    .selection .results-search span {
        padding: 5px 12px;
        font-size: 12px;
    }

    .menu-mobile {
        margin-top: 24px;
        width: 100vw;
        border-top: 1px solid #E6E6E6;
        display: block;
        padding: 24px 20px;
    }

    .menu-mobile li {
        margin-bottom: 24px;
    }

    .selection .results-search {
        padding: 0px;
    }

    .results-categories {
        padding: 0px 15px;
    }

    .menu-mobile li a {
        display: block;
        font-weight: 500;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
         font-family: "Outfit", sans-serif;
        color: #191D25;
        text-align: left;
    }

    .menu-mobile li a span {
        display: block !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        margin-top: 8px !important;
        line-height: 160% !important;
        letter-spacing: 0% !important;
        color: #191D25 !important;
        background-color: transparent !important;
        padding-left: 0px !important;
        text-align: left !important;
        padding-top: 0px !important;
    }

    .search-input-box {
        height: auto;
        padding: 20px;
        right: -20px;
    }

    .search-input-box form {
        overflow: hidden;
    }

    .search-input-box svg {
        top: 43px;
        width: 32px;
        right: 31px;
    }

    .selection svg {
        top: 19px;
    }

    .mobile-search-box .search-input-box {
        display: block;
        position: absolute;
        top: 100%;
        text-align: right;
    }

    .mobile-search-box .search-input-box span {
        margin-bottom: 8px;
        display: block;

        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        letter-spacing: 0%;
        border-radius: 0px 0px 8px 8px;
    }

    .mobile-search-box .search-input-box svg {
        top: 69px;
    }

    .mobile-search-box .tags {
        margin-top: 15px;
    }

    .mobile-search-box .tags span {
        display: inline-block;
        padding: 6px 11px;
        opacity: 1;
        border-radius: 4px;
        background-color: #E6E6E6;
        border: 1px solid #E6E6E6;
        font-weight: 500;
        font-size: 12px;
        line-height: 140%;
        letter-spacing: 0%;

    }

    .mobile-search-box {
        display: none !important;
    }

    .mobile-search-box.active .search-input-box,
    .mobile-search-box.active {
        display: block !important;
        transform: none;
        right: 0;
    }

    .search-input-box button {
        right: 26px;
        top: 61%;
    }

    .whats-new:after {
        width: 64px;
    }

    .banner-title,
    .banner-date {
        font-size: 12px;
        min-height: 0px;
    }

    .banner-category {
        font-size: 10px;
    }

    .link-news {
        width: 100%;
        margin: 0;
    }

    .results-search form button {
        bottom: 36px;
    }

    .banner-content {
        padding: 15px;
    }

    .homeBannerSwiper .swiper-slide {
        width: 273px !important;
    }

    .homeBannerSwiper .swiper-pagination-bullet {
        width: 40px;
    }

    .banner-card:before {
        width: 40px;
        height: 40px;
        right: -26px;
        top: -12px;
    }

    .banner-card:after {
        right: -8px;
        bottom: -8px;
        left: 8px;
        top: 8px;
    }

    .homeBannerSwiper {
        padding-bottom: 40px;
    }

    .home-banner {
        padding-bottom: 65px;
    }

    .circle-text img {
        width: 150px;
    }

    .section-title {
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: left;
    }

    .section-subtitle {
        font-weight: 500;
        font-size: 12px;
        line-height: 160%;
        letter-spacing: 0%;
        margin-top: 25px;
        display: block;
    }

    .section-title-box {
        display: block;
    }

    .whats-new {
        padding: 80px 0px;
    }

    .section-header {
        margin-bottom: 0px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .whats-new .banner-title {
        font-size: 12px;
    }

    .ranking-section .section-header {
        margin: 0px;
    }

    .ranking-section .swiper-button-prev {
        right: 36px;
    }

    .number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .whats-new {
        padding-bottom: 30px;
    }

    .category-decoration-right {
        width: 64px;
    }

    .categories-section .container-fullwidth {
        padding: 0px 10px;
    }

    .categories-section .section-header .section-title-box {
        display: flex;
        gap: 16px;
    }

    .categories-section {
        padding: 80px 0px;
    }

    .category-btn {
        display: inline-block;
        width: auto;
        font-size: 12px;
        padding-right: 10px;
        padding-left: 10px;
        height: 32px;
        line-height: 32px;
    }

    .categories-section .categories-buttons {
        flex-direction: inherit;
        text-align: center;
        justify-content: center;
        gap: 8px;
    }

    .categories-section .section-header {
        margin-bottom: 40px;
    }


    .category-search {
        width: 100%;
    }

    .about-section {
        display: block;
    }



    .header .navbar {
        border-bottom: 1px solid #E6E6E6
    }

    .header-mobile {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .search-sp .init,
    .btn-mobile .init {
        display: block;
    }

    .btn-mobile {
        display: flex;
        align-items: center;
    }

    .search-sp .active,
    .btn-mobile .active {
        display: none;
    }

    .right-header {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        width: auto;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .right-header-box a {
        font-size: 12px;
        width: 50% !important;
        justify-content: space-between;
        padding: 0px 15px;
    }

    .right-header-box a:first-child {
        border-bottom-left-radius: 0px !important;
    }

    .right-header-box a:last-child {
        border-bottom-right-radius: 0px !important;
    }

    .right-header .span {
        font-size: 12px;
    }

    .about-section .img-left img {
        width: 100%;
        padding-right: 20px;
        border-radius: 4px;
    }

    .about-section .text-content {
        margin-right: 0px;
        padding: 40px 20px;
    }

    .about-section .section-title {
        text-align: left;
        margin-bottom: 25px;
    }

    .about-section .section-header {
        margin-bottom: 25px;
    }

    .about-section .text-content h3 {
        font-size: 24px;
        line-height: 160%;
        letter-spacing: 0%;
        margin-bottom: 15px;
    }

    .about-section .text-content p {
        font-weight: 500;
        font-size: 14px;
        line-height: 240%;
        letter-spacing: 0%;

    }

    .about-section {
        top: 0px;
        padding-bottom: 0px;
    }

    .description-section h2 span {
        font-weight: 700;
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 0%;
        margin-bottom: 0;
    }

    .description-section h2 {
        margin-bottom: 20px;
    }

    .description-section {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0px;
    }

    .description-section p {
        font-size: 14px;
    }

    .products-section .box-white {
        padding: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .products-section .header-box {
        display: block;
    }

    .products-section .header-box h2 {
        font-weight: 700;
        font-size: 20px;
        line-height: 160%;
        letter-spacing: 0%;
        margin-bottom: 8px;
    }

    .products-section .header-box span {
        font-weight: 500;
        font-size: 14px;
        line-height: 180%;
        letter-spacing: 0%;
    }

    .product-lists {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .product-lists .product-item {
        display: block;
        padding: 10px;
    }

    .product-lists .product-item img {
        width: 100%;
    }

    .product-lists .product-item h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0%;
        margin-bottom: 8px;
    }

    .product-lists .product-item p {
        font-size: 14px;
        line-height: 160%;
        letter-spacing: 0%;
        margin-bottom: 0px;
    }

    .products-section {
        padding: 20px 20px 84px;
    }

    .product-grid .product-item {
        padding: 10px;
        margin-bottom: 0;
    }

    .product-grid h3 {
        font-weight: 700;
        font-size: 20px;
        line-height: 160%;
        letter-spacing: 0%;
    }

    .product-grid p {
        font-weight: 500;
        font-size: 14px;
        line-height: 160%;
        letter-spacing: 0%;
    }

    .media-wrapper:after {
        width: 323px;
        top: auto;
        bottom: 0;
        height: 315px;
    }

    .media-wrapper {
        display: block;
    }

    .media-wrapper img {
        width: 100%;
    }

    .media-section h3 {
        font-size: 24px !important;
        margin-top: 20px !important;
    }

    p {
        font-size: 14px;
        line-height: 240%;
    }

    .mb-35 {
        margin-bottom: 16px;
    }

    .container-fullwidth {
        padding: 0px 20px;
    }

    .media-wrapper a {
        margin-top: 0px;
        position: relative;
        z-index: 1;
    }

    .right-img {
        top: 30px;
    }

    .contact-header .blur {
        font-size: 20px;
    }

    .contact-section {
        padding-top: 32px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .contact-boxx:before {
        width: 64px;
    }

    .contact-wrapper .img img {
        width: 100%;
    }

    .contact-boxx {
        padding: 30px 20px;
    }

    .contact-boxx:before {
        width: 64px;
    }

    .contact-section .contact-wrapper {
        display: block;
    }

    .contact-wrapper a img {
        height: auto !important;
    }

    .readmore {
        margin: 58px auto 20px;
        width: auto;
        height: 76px !important;
        padding: 0px 10px 0px 58px !important;
        gap: 5px;
    }

    .readmore img {
        max-width: 784px;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .readmore .left {
        width: 96px !important;
    }

    .readmore .right {
        width: 56px;
        right: -25px;
        bottom: -15px;
    }

    .readmore span {
        font-weight: 600;
        font-size: 16px !important;
        line-height: 140%;
        letter-spacing: 0%;
        text-align: center;
    }

    .readmore svg {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }

    .school-section {
        padding: 20px 20px 32px;
        display: block;
    }

    .school-section .text {
        margin-left: 0px;
    }

    .button-readmore {
        font-size: 12px;
        white-space: nowrap;
        padding: 12px 13px;
    }

    .school-section img {
        width: 100%;
    }

    .school-left .buttons {
        position: relative;
        justify-content: end;
    }

    .readmore-box {
        position: relative;
        z-index: 1;
    }

    .school-left .buttons img {
        position: absolute;
        left: -20px;
        top: 0;
        z-index: 1;
        width: 280px;
    }

    .school-left {
        margin-bottom: 40px;
    }

    .banner-wrapper img {
        width: 100%;
        max-width: 100%;
    }

    .banner-wrapper {
        display: block;
        padding: 0;
    }



    .footer-wrapper {
        display: block;
    }

    .left-footer img {
        width: 100%;
    }

    .left-footer ul {
        text-align: center;
        margin: 32px 0px 24px;
    }

    .menu-footer ul li {
        margin-bottom: 5px;
        display: block;
        text-align: center;
        margin: 0px auto 15px;
    }

    .menu-footer ul li a {
        display: flex;
        font-size: 14px;
        justify-content: center;
    }

    .menu-footer ul {
        margin: 0px 0px 48px;
    }

    .footer-box p {
        font-style: Medium;
        font-size: 12px;
    }

    .footer {
        position: relative;
        padding: 55px 0px 131px;
    }

    .right-footer p {
        margin-top: -30px;
    }

    .banner {
        padding-bottom: 0px;
    }

    .banner-wrapper .img:first-child {
        margin-bottom: 30px;
    }

    .search .category.active svg path,
    .search .category.active span{
        color: #FFFFFF !important;
        fill: #ffffff !important;
        font-size: 12px !important;
    }

    .search .search-box {
        margin-left: 8px;
    }

    .results-categories {
        gap: 8px;
        padding-right: 45px;
    }

    .page-has-sidebar {
        display: block;
    }

    .articles-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .articles-section .section-header {
        margin-bottom: 40px;
        display: block;
    }

    .articles-section {
        padding: 24px 0px 0px;
    }

    .articles-section .breadcrumbs {
        position: relative;
        width: auto;
    }

    .pagination {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar .widget:not(:last-child) {
        margin-bottom: 24px;
    }

    .sidebar .widget:last-child {
        margin-bottom: 0px;
        padding-bottom: 40px;
    }

    .sidebar .widget-news {
        margin: 0px -20px;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 24px;
    }

    .list-news h3 {
        font-weight: 500;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .list-news h3.banner-title {
        font-weight: 500;
        font-size: 12px;
        line-height: 160%;
        letter-spacing: 0%;
    }

    .widget-title span {
        font-size: 12px;
    }

    .widget-news .banner-title {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .widget-news .banner-date {
        font-size: 12px;
    }

    .widget-news .number {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 10px;
    }

    .single.articles-section .section-header {
        margin-bottom: 24px;
        display: block;
    }

    .single.articles-section .breadcrumbs {
        position: unset;
    }

    .single-header .section-title {
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0%;
    }

    .single.articles-section img {
        width: 100%;
        min-width: 48px;
    }

    .single p {
        font-size: 16px;
    }

    .contact-detail {
        padding: 0px 0px 40px;
    }

    .table-contents {
        padding: 16px 20px 32px;
        margin-bottom: 24px;
    }

    .table-contents p {
        margin-bottom: 16px;
    }

    .table-contents ul li a,
    .table-contents ul li {
        font-size: 14px !important;
        margin-bottom: 1px;
    }

    .single .page-detail h2 {
        font-weight: 700;
        font-size: 18px;
        line-height: 200%;
        letter-spacing: 0%;
        margin-bottom: 24px;
    }

    .single .socials span {
        display: none !important;
    }

    .single .socials ul li {
        margin-left: 4px !important;
    }

    .single .socials {
        margin: 40px 0px !important;
    }

    .comments p {
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0%;
        margin-bottom: 24px;
    }

    .comment-item h3 {
        font-weight: 700;
        font-size: 16px !important;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .comments .bio {
        font-weight: 400;
        font-size: 14px;
        line-height: 180%;
        letter-spacing: 0%;
    }

    .comment-item .avatar img {
        width: 48px !important;
    }

    .realated-posts {
        padding: 64px 0px;
        margin: 0px -20px 24px;

    }

    .realated-posts h2 {
        text-align: left;
    }

    .single-header .categories {
        margin: 7px 0px;
    }

    .contact-detail a {
        margin-top: 1px;
    }

    .table-contents>p {
        margin-bottom: 15px;
    }

    .single-article h2 {
        margin-bottom: 20px;
    }

    .realated-posts .banner-category {
        height: 22px;
    }

    .widget-title h3,
    .widget-title {
        font-family: Outfit;
        font-weight: 500;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #191D25;
    }

    .widget .banner-image {
        width: 138px;
        border-radius: 8px 0px 0px 0px;
    }

    .whats-new .swiper-slide {
        height: auto;
        width: 273px !important;
    }

    .whats-new .swiper-button-next,
    .whats-new .swiper-button-prev {
        top: 43%;
    }

    .whats-new .swiper-button-next {
        right: 24px;
    }

    .whats-new .swiper-button-prev {
        left: 26px;
    }

    .swiper-button-next:after {
        width: 12px;
        height: 10px;
    }

    .swiper-button-prev:after {
        width: 12px;
        height: 10px;
    }

    .ranking-section .swiper-button-prev {
        right: 35px;
        left: auto;
        top: 67%;
    }

    .ranking-section .swiper-button-next {
        right: 0;
        top: 67%;
    }

    .search-box>span,
    .selection .category>span {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
    }

    .home-banner .banner-image img,
    .banner-image img {
        height: 203px;
    }

    .right-img .logo,
    .categories-section:after {
        display: none;
    }

    .readmore img {
        max-width: 100%;
    }

    .contact-box {
        min-width: 100%;
    }

    .school-section img {
        max-width: 100%;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .menu-footer {
        max-width: 100%;
    }

    .list-news .page-detail .banner-image img {
        height: auto;
    }

    .pagination a,
    .pagination span {
        font-size: 12px;
        width: 32px;
        height: 32px;
    }

    .pagination li {
        margin: 0px 3px;
    }

    .contact-detail .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .contact-detail .contact-box {
        padding: 0px;
    }

    .contact-detail .readmore svg {
        right: 10px;
    }

    .contact-detail .readmore span {
        padding: 0px 48px 0px 0px;
    }

    .contact-detail .readmore .right {
        width: 56px;
        bottom: -19px;
        right: -14px;
    }

    .contact-section .contact-boxx .readmore {
        margin-top: 20px;
    }

    .circle-text {
        top: -13%;
    }


    /* .search .category:hover {
background-color: #fff !important;
     }
      .search .category:hover span {
        color: #000000 !important;
     } */
}



@media screen and (min-width: 992px) and (max-width: 1440px) {

    .search .category,
    .link-news {
        width: 150px;
    }

    .logo img {
        max-height: 78px;
    }

    .header .search {
        margin-right: 80px;
    }

}









.pp-content img {
    height: auto;
}

.single-article img {
    height: auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #000000;
}

.widget-image {
    position: relative;
}

.widget-image.pink {
    background-color: #F6C0D1;
    height: 353px;
    border-radius: 8px;
    opacity: 1;
    padding-top: 10px;
}

.widget-image.green {
    border: 8px solid #75CAC3;
    border-radius: 8px;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 0;
}

.widget-image span {
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 8%;
    color: #FFFFFF;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    padding: 0px 70px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    gap: 8px;
}
.widget-image  a{
    display: block;
}
.widget-image.green span {
    background: linear-gradient(87deg, #c679df 0%, #2BA7DE 100%), linear-gradient(90deg, #9D7CED 0%, #2BA7DE 100%);
}

.widget-image.pink span {
    background: linear-gradient(90deg, #F15F79 0%, #C84E89 100%);
}

.widget-image.green a:hover span{
    background: rgba(157, 124, 237, 1);
}

.widget-image.pink a:hover span{
    background: rgba(241, 95, 121, 1);
}

.external-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}


/* ---- Please take a look (rotating) ---- */
.inspect__look {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    transform: translateY(-50%);
}

.inspect__lookCircle {
    width: 400px;
    height: 400px;
    animation: inspectSpin 9s linear infinite;
}

.inspect__lookCircle svg {
    width: 100%;
    height: 100%;
}

.inspect__lookCircle text {
    font-size: 25px;
    letter-spacing: 4px;
    fill: #030023;
    font-weight: 300;
}

@keyframes inspectSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.inspect__lookCircle svg {
    width: 400px;
    height: 400px;
}

.author-related-posts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.author-related-posts > p {
    line-height: 1.4;
    margin-bottom: 24px;
}

.author-related-posts-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.author-related-post {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.author-related-post:hover {
    opacity: 0.7;
}

.author-related-post-thumb {
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.author-related-post-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.author-related-post-body {
    margin-top: 12px;
}

.author-related-post-body time {
    display: block;
    font-size: 12px;
    color: #888;
    line-height: 1;
    margin-bottom: 8px;
}

.author-related-post-body p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* SP */
@media screen and (max-width: 767px) {

    .author-related-posts {
        margin-top: 32px;
        padding-top: 24px;
    }

    .author-related-posts > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .author-related-posts-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}