:root {
    --font-family: ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji";
    --color-all: #0C4464;
    --color-white: #fafafa;
}

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

/*---------------------------------------- Home ----------------------------------------*/
#wrap-home {
    height: 100%;
    width: 100%;
    overflow: hidden;
    color: var(--color-all);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.content-home {
    width: 100%;
    background-color: #f5f5f5;
}

/*---------------------------------------- Header ---------------------------------------- */
#wrap-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: 0px 2px 10px #bbd6e5;
}

#wrap-header .home-header {
    margin: auto;
    width: 1240px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.home-header a {
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    text-decoration: none;
    color: var(--color-all);
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.home-header a:hover {
    text-shadow: 1px 1px 3px;
}

.home-header .active {
    text-shadow: 1px 1px 1px;
    text-decoration: revert;
}

.home-header .header-left {
    display: flex;
    gap: 45px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.home-header .header-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-header .header-right {
    gap: 30px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.header-right .itemh {
    gap: 5px;
    height: 35px;
    cursor: pointer;
    padding: 0px 20px;
    background: #bbd6e5;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 0 20px 20px 30px;
}

.header-login,
.header-signup {
    position: relative;
}

.lineh {
    display: none;
    padding: 8px;
    min-width: 150px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-radius: 6px;
    text-align: center;
    flex-direction: column;
    background: var(--color-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lineh a {
    display: block;
    padding: 8px 16px;
    line-height: normal;
    font-size: 16px;
    border-radius: 6px;
    color: var(--color-all);
    text-decoration: none;
    transition: background 0.2s;
}

.lineh a:hover {
    background: #bbd6e5;
}

/*----------------------------------------  Banner ---------------------------------------- */
.home-banner {
    width: 100%;
    height: 100vh;
    font-family: var(--font-family);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-banner video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    object-fit: cover;
}

.home-banner .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}

.banner-a {
    width: 40%;
    position: relative;
    top: 0;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.banner-a h1 {
    position: relative;
    font-size: 40px;
    font-weight: 700;
}

.banner-a h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 215px;
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, #5d676d00 0%, #ffffff 50%, #5d676d00 100%);
}

.banner-a p {
    font-size: 20px;
    font-weight: 500;
    margin: 50px 0;
}

.banner-link {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}

.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-item span {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
}

.banner-item span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 2px;
    background: linear-gradient(to right, #5d676d00 0%, #fafafa 50%, #5d676d00 100%);
}

.banner-item a {
    width: 150px;
    height: 40px;
    font-weight: 500;
    border-radius: 40px;
    color: var(--color-white);
    background-color: #0C4464;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.banner-item a:hover {
    transform: translateY(3px);
    box-shadow: 1px 1px 10px 0px;
}

.banner-link a .animation {
    width: 10px;
    height: 10px;
    position: absolute;
    left: 10px;
    opacity: 0.7;
    border-radius: 10px;
    animation: ripple 1.5s linear infinite;
}

@keyframes ripple {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 10px rgba(255, 255, 255, 0.2),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0.05);
    }

    100% {
        box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.2),
            0 0 0 20px rgba(255, 255, 255, 0.1),
            0 0 0 30px rgba(255, 255, 255, 0.05),
            0 0 0 40px rgba(255, 255, 255, 0);
    }
}

/*----------------------------------------  Advertiser ---------------------------------------- */

.wrap-advertiser {
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    font-family: var(--font-family);
}

.home-advertiser {
    margin: auto;
    width: 1240px;
    min-height: 444px;
    display: flex;
    justify-content: space-between;
}

.home-advertiser .advertiser_left {
    text-align: center;
    width: 50%;
}

.advertiser_left h3 {
    font-size: 32px;
    color: var(--color-all);
    font-weight: 700;
}

.advertiser_left .advertiser_p {
    text-align: justify;
}

.advertiser_left p {
    padding: 2px 10px;
    border-left: 4px solid #225572a3;
    font-size: 16px;
    color: var(--color-all);
    transition: all 0.3s ease;
}

.advertiser_left p:hover {
    border-left-color: var(--color-all);
    transform: translateX(5px);
}

.advertiser_left button {
    margin: 15px 0;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #bbd6e5de;
    box-shadow: 0px 0px 4px 2px #0c4464 inset;
    transition: all 0.3s ease;
}

.advertiser_left button:hover {
    transform: scale(105%) !important;
}

.advertiser_left a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-all);
}

.advertiser_right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.advertiser_right .image_r {
    width: 450px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.advertiser_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.advertiser_right::before,
.advertiser_right::after {
    content: "";
    position: absolute;
    border: 2px solid #0c4464;
    border-radius: 50%;
    width: 400px;
    height: 200px;
    top: 50%;
    left: 77%;
    transform: translate(-50%, -50%) rotate(303deg);
}

.advertiser_right::after {
    left: 65%;
    top: 48%;
    width: 400px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(306deg);
    z-index: -1;
    border: 2px solid #0c4464b3;
}

.advertiser_right .ring {
    position: absolute;
    border: 2px solid #0c44646e;
    border-radius: 50%;
    width: 400px;
    height: 200px;
    top: 44%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(307deg);
}
/*----------------------------------------  Categore ---------------------------------------- */
.wrap-categores {
    padding-top: 40px;
    padding-bottom: 20px;
    font-family: var(--font-family);
    background: linear-gradient(to right, #1376A8 0%, #AAD7F3 80%);
}

.home_categores {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
    width: 1240px;
    min-height: 444px;
    margin: 0 auto;
}

.categore_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.categore_item {
    position: relative;
    background: #fafafaa3;
    padding: 20px;
    border-radius: 12px;
    color: var(--color-all);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categore_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.categore_item .p {
    margin: 0;
    padding: 8px 10px;
    border-radius: 100%;
    background: #1e7dae80;
    position: absolute;
    top: -20px;
    left: -25px;
}

.categore_item img {
    width: 35px;
    height: 35px;
}

.categore_item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.categore_item span>p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.categore_center {
    text-align: center;
}

.categore_center h3 {
    background-color: #fafafaa3;
    padding: 10px;
    border-radius: 10px;
    margin-top: 0;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-all);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 2px 3px #1e7dad;
}

.video-wrapper img,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: opacity 0.8s ease-in-out;
}

.video-wrapper img {
    z-index: 2;
    opacity: 1;
}

.video-wrapper video {
    z-index: 1;
    opacity: 0;
}

.video-wrapper.fade video {
    z-index: 3;
    opacity: 1;
}

.video-wrapper.fade img {
    opacity: 0;
}

#playBtn,
#stopBtn {
    position: absolute;
    bottom: 5%;
    left: 12%;
    background: linear-gradient(to right, #1376A8 0%, #AAD7F3 80%);
    color: white;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s ease;
}

#muteBtn {
    position: absolute;
    bottom: 5%;
    left: 2%;
    background: linear-gradient(to right, #1376A8 0%, #AAD7F3 80%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
}

.video-wrapper.hide-controls #playBtn,
.video-wrapper.hide-controls #stopBtn,
.video-wrapper.hide-controls #muteBtn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover #playBtn,
.video-wrapper:hover #stopBtn,
.video-wrapper:hover #muteBtn {
    opacity: 1 !important;
    pointer-events: all;
}
/*----------------------------------------  Publisher ---------------------------------------- */
.wrap-publisher {
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    font-family: var(--font-family);
    padding: 20px 0;
}

.home-publisher {
    margin: auto;
    width: 1240px;
    min-height: 444px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.publisher_left {
    width: 50%;
    position: relative;
}

.publisher_left::before,
.publisher_left::after {
    content: "";
    position: absolute;
    border: 2px solid #0c4464;
    border-radius: 20px;
    width: 390px;
    height: 222px;
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%) rotate(246deg);
}

.publisher_left::after {
    left: 34%;
    top: 50%;
    width: 390px;
    height: 222px;
    transform: translate(-50%, -50%) rotate(63deg);
    border: 2px solid #0c4464b3;
}

.publisher_imager {
    width: 450px;
    height: 300px;
    position: relative;
    z-index: 2;
}

.publisher_imager img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    border-radius: 20px;
}

.publisher_right {
    width: 50%;
    text-align: center;
}

.publisher_right h3 {
    font-size: 32px;
    color: var(--color-all);
    font-weight: 700;
}

.publisher_p {
    text-align: justify;
}

.publisher_p p {
    padding: 2px 10px;
    border-left: 4px solid #225572a3;
    font-size: 16px;
    color: var(--color-all);
    transition: all 0.3s ease;
}

.publisher_p p:hover {
    border-left-color: var(--color-all);
    transform: translateX(5px);
}

.publisher_content button {
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #bbd6e5de;
    box-shadow: 0px 0px 4px 2px #0c4464 inset;
    transition: all 0.3s ease;
}

.publisher_content button:hover {
    transform: scale(105%) !important;
}

.publisher_content a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-all);
}
/*----------------------------------------  Article ---------------------------------------- */
.wrap-article {
    width: 100%;
    height: auto;
    padding: 20px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

.wrap-article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(187 214 229 / 30%);
    z-index: 0;
}

.home-article {
    width: 1240px;
    min-height: 444px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.article_left,
.article_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.article_center {
    text-align: center;
    flex: 1.5;
    border-radius: 20px;
    background: #fafafaa3;
}

.article-king h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-all);
}

.article-king h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-all);
}

.article_item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #fafafaa3;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
}

.article_item:hover::before {
    animation: shine 1.2s ease-in-out;
}

@keyframes shine {
    0% {
        left: -120%;
    }

    50% {
        left: 50%;
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

.article_item p {
    grid-row: span 2;
    grid-column: 1;
    font-size: 24px;
    text-align: center;
    margin: 0;
}

.article_item p::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 100%;
    z-index: -1;
    background: #0c4464;
    transform: skewX(-25deg);
}

.article_item p>img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.article_item h6 {
    text-align: center;
    font-size: 16px;
    margin: 0;
    color: var(--color-all);
}

.article_item button {
    grid-row: 2;
    grid-column: 2;
    background: #fafafa69;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article_item button:hover {
    border-radius: 20px;
    transform: scale(105%) !important;
}

.article_item button a {
    color: var(--color-all);
    text-decoration: none;
    font-size: 14px;
}

/* ---------------------------------------- Agencie ----------------------------------------  */
.wrap-agencie {
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    font-family: var(--font-family);
    padding: 20px 0;
}

.home-agencie {
    margin: auto;
    width: 1240px;
    min-height: 444px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agencie_right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: end;
}

.agencie_right::before,
.agencie_right::after {
    content: "";
    position: absolute;
    border: 2px solid #0c4464;
    border-radius: 20px;
    width: 390px;
    height: 222px;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%) rotate(246deg);
}

.agencie_right::after {
    left: 60%;
    top: 50%;
    width: 390px;
    height: 222px;
    transform: translate(-50%, -50%) rotate(63deg);
    border: 2px solid #0c4464b3;
}

.agencie_imager {
    width: 450px;
    height: 300px;
    position: relative;
    z-index: 2;
}

.agencie_imager img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    border-radius: 20px;
}

.agencie_left {
    width: 50%;
    text-align: center;
}

.agencie_left h3 {
    font-size: 32px;
    color: var(--color-all);
    font-weight: 700;
}

.agencie_p {
    text-align: justify;
}

.agencie_p p {
    padding: 2px 10px;
    border-left: 4px solid #225572a3;
    font-size: 16px;
    color: var(--color-all);
    transition: all 0.3s ease;
}

.agencie_p p:hover {
    border-left-color: var(--color-all);
    transform: translateX(5px);
}

.agencie_content button {
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background-color: #bbd6e5de;
    box-shadow: 0px 0px 4px 2px #0c4464 inset;
    transition: all 0.3s ease;
}

.agencie_content button:hover {
    transform: scale(105%) !important;
}

.agencie_content a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-all);
}

/* ---------------------------------------- Product ---------------------------------------- */
.wrap-product {
    width: 100%;
    background: linear-gradient(to left, #1376A8 0%, #AAD7F3 80%);
    padding: 20px 0;
}

.home-product {
    width: 1240px;
    min-height: 600px;
    margin: 0 auto;
}

.new-product h3,
.sale-product h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-white);
}

.new-product.slider,
.sale-product.slider {
    width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.product_list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
}

.product_item {
    width: 222px;
    height: 166px;
    margin: 0 10px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.product_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.product_content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 92%;
    height: 80%;
    background: linear-gradient(to top, #aad7f3c7 0%, #1376a8 80%);
    color: #fff;
    line-height: 24px;
    font-size: 13px;
    transform: translateY(100%);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product_item:hover .product_content {
    transform: translateY(0);
}

.product_content .meta {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_content p {
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_content .desc span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.product_content .stats {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-track {
    display: flex;
    will-change: transform;
    padding: 2px 0;
}

.product_item {
    flex: 0 0 222px;
    box-shadow: 0px 0px 1px 1px #84bfe0;
}

.new-product:hover>button,
.sale-product:hover>button {
    opacity: 1;
    cursor: pointer;
}

.new-product .prev,
.sale-product .prev {
    z-index: 10;
    color: var(--color-white);
    font-size: 25px;
    position: absolute;
    opacity: 0;
    height: 200px;
    border: none;
    box-shadow: 4px 5px 9px 3px #4294bf;
    background: linear-gradient(to right, #97cae9 0%, #4093be 100%);
}

.new-product .next,
.sale-product .next {
    right: 0;
    top: 69px;
    z-index: 10;
    color: var(--color-white);
    font-size: 25px;
    position: absolute;
    border: none;
    height: 200px;
    opacity: 0;
    box-shadow: -5px 1px 9px 3px #3a8fbc;
    background: linear-gradient(to right, #3a8fbc 0%, #1376a8 100%);
}

/* ---------------------------------------- Get start ---------------------------------------- */
.wrap-getstart {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to left, #1376A8 0%, #AAD7F3 80%);
}

.home-getstart {
    width: 1240px;
    margin: auto;
}

.home-getstart .title h3 {
    width: 200px;
    margin: auto;
    text-align: center;
    font-size: 30px;
    padding: 10px 20px;
    color: var(--color-all);
    background: var(--color-white);
    border-radius: 10px;
    border: 4px solid;
    border-color: #9c27b0 #0c4464 #03a9f4 #1b7bac;
}

.getstart_list {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.getstart_item {
    width: 340px;
    min-height: 340px;
    border-radius: 20px;
    text-align: center;
    border: 4px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    flex-direction: column;
}

.getstart_item h6 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 20px;
    color: var(--color-white);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.getstart_item:nth-child(1) {
    background-image: linear-gradient(#fafafa, #fafafa), linear-gradient(to top, #9c27b0, #e189f0);
}

.getstart_item:nth-child(2) {
    background-image: linear-gradient(#fafafa, #fafafa), linear-gradient(to top, #0c4464, #2c8bc3);
}

.getstart_item:nth-child(3) {
    background-image: linear-gradient(#fafafa, #fafafa), linear-gradient(to top, #03a9f4, #68c1eb);
}

.getstart_item:nth-child(1) h6 {
    background: #e59df1;
}

.getstart_item:nth-child(2) h6 {
    background: #2c8ac2;
}

.getstart_item:nth-child(3) h6 {
    background: #73c7ed;
}

.getstart_item b {
    margin: 20px 0 15px;
    padding: 0 10px;
    text-align: justify;
    font-size: 16px;
    font-weight: 600;
}

.getstart_p {
    padding: 0 10px;
    text-align: start;
    flex: 1;
    line-height: 1.4;
}

.getstart_p p {
    position: relative;
    padding-left: 25px;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.getstart_p p::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1376A8;
    font-weight: bold;
}

.getstart_item button {
    width: 73%;
    margin: 10px auto;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.getstart_item button:hover {
    transform: scale(1.05);
}

.getstart_item:nth-child(1) button {
    border: 2px solid #9C27B0;
}

.getstart_item:nth-child(2) button {
    border: 2px solid #0c4464;
}

.getstart_item:nth-child(3) button {
    border: 2px solid #03a9f4;
}

.getstart_item button a {
    text-decoration: none;
    color: var(--color-all);
    transition: all 0.3s ease;
}

/* ---------------------------------------- Contact ---------------------------------------- */
.wrap-contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: var(--color-white);
}

.home-contact {
    width: 1240px;
    min-height: 444px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact_left {
    width: 50%;
}

.contact_left .contact_img {
    width: 450px;
    height: 350px;
}

.contact_img img {
    width: 100%;
    height: 100%;
    object-fit: unset;
}

.contact_right {
    width: 50%;
}

.contact_right .contact_list {
    text-align: center;
}

.contact_title h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--color-all);
}

.contact_list .contact_form {
    text-align: justify;
}

.contact_form .form_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact_form .form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    line-height: 40px;
}

.contact_form .form_group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-all);
}

.contact_form .form_group input,
select,
textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: var(--color-white);
    background-color: #0c4464dd;
    border: #0C4464;
}

input::placeholder,
textarea::placeholder {
    color: var(--color-white);
    opacity: 1;
}

.form_action {
    float: right;
}

.form_action button {
    padding: 6px 16px;
    border: none;
    color: var(--color-white);
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    background-color: var(--color-all);
    transition: all 0.3s ease;
}

.form_action button:hover {
    transform: scale(105%) !important;
}

/* ---------------------------------------- Map ---------------------------------------- */
.wrap-map {
    width: 100%;
    background: linear-gradient(to left, #1376A8 0%, #AAD7F3 80%);
    padding: 20px 0;
}

.home-map {
    width: 1240px;
    margin: 0 auto;
}

/* ---------------------------------------- Footer ---------------------------------------- */
.wrap-footer {
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid;
    color: var(--color-all);
    background-color: var(--color-white);
}

.home-footer {
    width: 1240px;
    margin: 0 auto;
}

.footer_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer_item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--color-all);
}

.footer_item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_item ul li {
    margin-bottom: 8px;
}

.footer_item ul li a {
    text-decoration: none;
    color: var(--color-all);
    transition: color 0.2s ease;
}

.footer_item ul li a:hover {
    color: #6a1b9a;
}

.footer_info {
    border-top: 2px solid;
    padding-top: 20px;
}

.footer_info,
.footer_info ul {
    display: flex;
    justify-content: space-between;
}

.footer_info ul li {
    margin-left: 20px;
}

.footer_info ul li a {
    position: relative;
}

.footer_item ul li a::after {
    content: attr(data-title);
    position: absolute;
    bottom: 190%;
    left: 50%;
    transform: translateX(-50%);
    background: #0077b5;
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
}

.footer_item ul li a:hover::after {
    opacity: 1;
}

.mobi_header,
.side-menu {
    display: none;
}

/************************************** @media  *****************************************/
@media (min-width: 1550px) {

    /******************** @Header  ********************/
    #wrap-header {
        height: 70px;
    }

    #wrap-header .home-header {
        height: 100%;
        margin: auto;
        width: 1400px;
    }

    .home-header .header-left {
        gap: 70px;
    }

    .home-header .header-right {
        gap: 60px;
    }

    .home-header a {
        font-size: 18px;
    }

    .header-center>a>img {
        width: 230px !important;
        height: 45px !important;
    }

    .header-login .lineh>a,
    .header-signup .lineh>a {
        font-size: 18px;
    }

    /******************** @Banner  ********************/
    .banner-a {
        width: 50%;
    }

    .banner-a h1 {
        font-size: 48px;
    }

    .banner-a h1::after {
        left: 40%;
        width: 20%;
        height: 2px;
    }

    .banner-a p {
        font-size: 24px;
    }

    .banner-link a {
        font-size: 18px;
        width: 210px;
        height: 44px;
    }

    /******************** @Advertiser  ********************/
    .home-advertiser {
        width: 1400px;
    }

    .home-advertiser .advertiser_left {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .advertiser_left h3 {
        font-size: 28px;
    }

    .advertiser_left p,
    .advertiser_left a {
        font-size: 16px;
    }

    .advertiser_left button {
        margin-bottom: 25px;
    }

    .advertiser_right .image_r {
        width: 500px;
        height: 380px;
    }

    .advertiser_right .ring {
        display: none;
    }

    .advertiser_right::before {
        width: 423px;
        height: 330px;
        transform: translate(-50%, -50%) rotate(170deg);
    }

    .advertiser_right::after {
        left: 78%;
        top: 50%;
        width: 480px;
        height: 350px;
        transform: translate(-50%, -50%) rotate(354deg);
    }

    /******************** @Category  ********************/
    .home_categores {
        width: 1400px;
        min-height: 500px;
        grid-template-columns: 1fr 1.2fr 1fr;
    }

    .categore_center h3 {
        font-size: 28px;
    }

    .categore_item h6 {
        font-size: 20px;
    }

    .categore_item img {
        width: 38px;
        height: 38px;
    }

    .categore_item span>p {
        font-size: 16px;
    }

    /******************** @Publisher  ********************/
    .home-publisher {
        width: 1400px;
        min-height: 500px;
    }

    .publisher_imager {
        width: 500px;
        height: 380px;
    }

    .publisher_left::before,
    .publisher_left::after {
        top: 49%;
        left: 35%;
        width: 400px;
        height: 250px;
        transform: translate(-50%, -50%) rotate(64deg);
    }

    .publisher_left::after {
        left: 29%;
        top: 48%;
        width: 400px;
        height: 250px;
        transform: translate(-50%, -50%) rotate(64deg);
    }

    .publisher_left {
        width: 50%;
    }

    .publisher_right h3 {
        margin: 0;
        font-size: 28px;
    }

    .publisher_p p,
    .publisher_content a {
        font-size: 16px;
    }

    /******************** @Article  ********************/
    .home-article {
        width: 1400px;
        min-height: 500px;
    }

    .article_item h6 {
        font-size: 20px;
    }

    .article_item button a {
        font-size: 16px;
    }

    .article_item {
        grid-template-rows: 1.5fr 1fr;
    }

    .article-king h3 {
        font-size: 28px;
    }

    .article-king h5 {
        font-size: 24px;
    }

    /******************** @Product  ********************/
    .home-product {
        width: 1400px;
        min-height: 500px;
    }

    .new-product.slider,
    .sale-product.slider {
        width: 1400px;
    }

    .new-product h3,
    .sale-product h3 {
        font-size: 28px;
    }

    /******************** @Agencie  ********************/
    .home-agencie {
        width: 1400px;
    }

    .home-agencie h3 {
        font-size: 28px;
    }

    .home-agencie p,
    .home-agencie a {
        font-size: 16px;
    }

    .agencie_imager {
        width: 500px;
        height: 380px;
    }

    .agencie_right::before {
        left: 74%;
    }

    .agencie_right::after {
        left: 64%;
    }

    /******************** @Get Start  ********************/
    .home-getstart {
        width: 1400px;
        min-height: 500px;
    }

    .home-getstart h3 {
        width: 280px;
        font-size: 28px;
        padding: 5px 15px;
    }

    .getstart_list {
        margin-top: 20px;
        justify-content: space-between;
    }

    .getstart_item {
        width: 400px;
        min-height: 400px;
    }

    .getstart_item h6 {
        font-size: 20px;
    }

    .getstart_item b {
        font-size: 18px
    }

    .getstart_item button a,
    .getstart_item p {
        font-size: 16px;
    }

    .getstart_item button {
        margin-left: 48px;
    }

    /******************** @Contact  ********************/
    .home-contact {
        width: 1400px;
        min-height: 500px;
    }

    .contact_left .contact_img {
        width: 500px;
        height: 380px;
    }

    .contact_title h3 {
        font-size: 28px;
        margin: 0;
    }

    .contact_form .form_group label,
    .form_action button {
        font-size: 18px;
    }

    .contact_form .form_group input,
    select,
    textarea {
        font-size: 16px;
    }

    .form_action>em {
        margin-right: 10px;
    }

    /******************** @Footer  ********************/
    .home-map {
        width: 1400px;
    }

    .home-footer {
        width: 1400px;
    }

    .footer_item h6 {
        font-size: 20px;
    }

    .footer_item ul li a {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {}

@media (max-width: 480px) {
    #wrap-header {
        height: 50px
    }

    .home-header {
        display: none !important;
    }

    .mobi_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        background: #fff;
        padding: 0 10px;
        border-bottom: 1px solid #ddd;
        position: relative;
        z-index: 10;
    }

    .mobi-left .logo-box {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .mobi-left img {
        height: 20px;
        width: 90px;
    }

    .brand {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .mobi-right {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .drop-btn {
        border: none;
        color: var(--color-all);
        background: aliceblue;
        border-radius: 10px;
        padding: 5px 10px;
    }

    .dropdown {
        position: relative;
    }

    .drop-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        min-width: 110px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .drop-menu a {
        display: block;
        padding: 8px 10px;
        text-decoration: none;
        font-size: 13px;
        color: #333;
    }

    .drop-menu a:hover {
        background: #f5f5f5;
    }

    .dropdown.show .drop-menu {
        display: block;
    }

    .nav-icon {
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: var(--color-all);
    }

    .side-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 280px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 200;
        padding: 20px;
    }

    .side-menu.open {
        right: 0;
    }

    .side-menu nav a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        text-decoration: none;
        color: var(--color-all);
        border-bottom: 1px solid #eee;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 24px;
        float: right;
        cursor: pointer;
        color: var(--color-all);
    }

    /* ************* Banner ************* */
    .banner-a {
        width: 100%;
        line-height: 1.6rem;
    }

    .banner-a h1 {
        font-size: 22px;
    }

    .banner-a h1::after {
        bottom: -10px;
        left: 35%;
        width: 111px;
        height: 2px;
    }

    .banner-a p {
        font-size: 14px;
        padding: 0 10px
    }

    .banner-link {
        margin-top: 20px;
    }

    .banner-link a {
        width: 100px;
        height: 33px;
        font-size: 14px;
        padding-left: 15px;
    }

    /* ************* Advertiser ************* */
    .wrap-advertiser {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .home-advertiser {
        width: 95%;
        margin: 0;
        min-height: auto;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .advertiser_left,
    .advertiser_right {
        width: 100% !important;
    }

    .advertiser_right .image_r {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .advertiser_right::before,
    .advertiser_right::after,
    .advertiser_right .ring {
        display: none;
    }

    .advertiser_left h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .advertiser_left p {
        font-size: 14px;
        padding: 4px;
        margin: 4px 0;
        border-left: 2px solid #225572a3;
    }

    .advertiser_left button {
        margin-top: 10px;
        padding: 6px 12px;
        font-size: 14px;
    }

    /* ************* Category ************* */
    .wrap-categores {
        padding: 10px;
    }

    .home_categores {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        min-height: auto;
        justify-items: center;
        align-items: center;
    }

    .home_categores .mobi_h3 {
        display: block !important;
        font-size: 20px;
        margin: 0;
        padding: 6px 16px;
        border-radius: 10px;
        background: #d6e9f4;
    }

    .categore_item h6 {
        margin: 0 0 0 50px;
        font-size: 16px;
        font-weight: bold;
    }

    .categore_list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .categore_item {
        width: 90%;
        padding: 15px;
    }

    .categore_item .p {
        position: absolute;
        background: transparent;
        top: 0;
        left: 10px;
    }

    .categore_item span>p {
        font-size: 13px;
    }

    .categore_item img {
        width: 24px;
        height: 24px;
    }

    .categore_center h3 {
        display: none;
    }

    .video-wrapper {
        height: 200px;
        width: 100%;
    }

    .btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* ************* Publisher ************* */
    .wrap-publisher {
        padding: 10px;
        width: auto;
    }

    .home-publisher {
        width: 95%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }

    .publisher_left,
    .publisher_right {
        width: 100%;
    }

    .publisher_left::before,
    .publisher_left::after {
        display: none;
    }

    .publisher_imager {
        width: 100%;
        height: auto;
        max-width: 480px;
    }

    .publisher_imager img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
    }

    .publisher_right h3 {
        font-size: 20px;
        line-height: 1.3;
        margin: 10px 0;
    }

    .publisher_p p {
        font-size: 14px;
        padding: 4px;
        margin: 4px 0;
        border-left: 2px solid #225572a3;
    }

    .publisher_content button {
        font-size: 14px;
        padding: 6px 12px;
        margin-top: 12px;
    }

    /* ************* Article ************* */
    .wrap-article {
        padding: 20px 0;
        background-position: center;
        background-size: cover;
    }

    .home-article {
        width: 95%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    .article_left,
    .article_right {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .article_center {
        width: 90%;
        text-align: center;
        padding: 20px 10px;
        background: #fafafaa3;
        border-radius: 12px;
    }

    .article-king h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .article-king h5 {
        font-size: 16px;
    }

    .article_item {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        padding: 10px;
        width: 90%;
        margin: 0 auto;
        background: #fafafa9c;
    }

    .article_item p {
        grid-row: span 2;
        grid-column: 1;
    }

    .article_item p::after {
        width: 45px;
    }

    .article_item p img {
        width: 28px;
        height: 28px;
    }

    .article_item h6 {
        font-size: 16px;
    }

    .article_item button {
        grid-row: 2;
        grid-column: 2;
        padding: 5px 10px;
        margin-top: 4px;
    }

    .wrap-article,
    .home-article {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* ************* Product ************* */
    .wrap-product {
        padding: 10px;
    }

    .home-product {
        width: 95%;
        margin: 0;
        min-height: auto;
    }

    .sale-product {
        margin-top: 0 !important;
    }

    .new-product.slider,
    .sale-product.slider {
        width: 95%;
    }

    .new-product h3,
    .sale-product h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .product_item {
        width: 130px;
        height: 100px;
    }

    .product_item {
        flex: 0 0 130px;
    }

    /* ************* Agencie ************* */
    .wrap-agencie {
        padding: 10px;
    }

    .home-agencie {
        width: 95%;
        margin: 0;
        min-height: auto;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .agencie_left,
    .agencie_right {
        width: 100%;
        justify-content: center;
    }

    .agencie_right::before,
    .agencie_right::after {
        display: none;
    }

    .agencie_imager {
        width: 95%;
        height: auto;
    }

    .agencie_imager img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 16px;
    }

    .agencie_left h3 {
        font-size: 20px;
        line-height: 1.3;
        margin: 10px 0;
    }

    .agencie_p p {
        font-size: 14px;
        line-height: 1.4;
        border-left: 2px solid #225572a3;
        padding: 4px;
        margin: 4px;
    }

    .agencie_content button {
        font-size: 14px;
        padding: 6px 12px;
        margin-top: 10px;
        border-radius: 16px;
    }

    .agencie_content {
        width: 100%;
    }

    /* ************* GetStarted ************* */
    .wrap-getstart {
        width: 100%;
        padding: 10px;
    }

    .home-getstart {
        width: 95%;
        margin: 0;
    }

    .home-getstart h2 {
        display: flex;
        justify-content: center;
        padding: 6px;
        font-size: 20px;
    }

    .getstart_list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 15px auto;
    }

    .getstart_item {
        width: 100%;
        max-width: 360px;
        min-height: auto;
    }

    .getstart_item h4 {
        font-size: 18px;
        padding: 15px;
    }

    .getstart_item .pp {
        font-size: 14px;
        text-align: center;
        margin: 10px 0;
    }

    .getstart_p {
        text-align: left;
        padding: 0 15px;
    }

    .getstart_item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .getstart_item button {
        width: 85%;
        margin: 15px auto 20px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .getstart_item button a {
        display: block;
        width: 100%;
    }

    /* ************* Contact ************* */
    .wrap-contact {
        padding: 10px;
    }

    .home-contact {
        flex-direction: column;
        width: 95%;
        min-height: auto;
    }

    .contact_left {
        display: none;
    }

    .contact_right {
        width: 100%;
    }

    .contact_title h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .contact_title p {
        font-size: 14px;
    }

    .contact_form {
        width: 95%;
    }

    .contact_form .form_row {
        flex-direction: column;
        gap: 0;
    }

    .contact_form .form_group {
        width: 100%;
        margin: 0;
    }

    .form_action {
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    .form_action em {
        display: block;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .form_action button {
        width: 80%;
        font-size: 14px;
        padding: 8px 12px;
    }

    /* ************* Map ************* */
    .wrap-map {
        width: 100%;
        padding: 10px;
    }

    .home-map {
        width: 95%;
    }

    .home-map iframe {
        width: 95%;
        height: 300px;
    }

    /* ************* Footer ************* */
    .wrap-footer {
        width: 100%;
        padding: 10px;
    }

    .home-footer {
        width: 95%;
    }

    .footer_list {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .footer_item h6 {
        font-size: 16px;
    }

    .footer_item ul li {
        font-size: 14px;
    }

    .footer_info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer_info ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer_info ul li {
        margin: 5px;
    }

}