/*-----------------------------------------------------------------------------------

    Theme Name: Capi x Mobifone
    Description: Capi x Mobifone
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    :: 1.0 Font Google
    :: 2.0 Variable CSS
	:: 3.0 Reset CSS
	:: 4.0 Class Global
		:: 4.1 Class Color
		:: 4.2 Class Background
		:: 4.3 Class Button
	:: 5.0 Layout CSS
	 	:: 5.1 Header
		:: 5.2 Footer
-----------------------------------------------------------------------------------*/

/*=============================
	:: 1.0 Font Google
===============================*/

@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap");

/*=============================
	:: 2.0 Variable CSS
===============================*/

:root {
    --primary-font: "Manrope", serif;
    --cta-bg-o: #0e1525;
    --black-bg: #001733;
    --white-bg: #ffffff;
    --linear-gradient-bg: linear-gradient(92deg, #0a77ff 1.96%, #5ca5ff 99.71%);

    --cta-text: #6d15a2;
    --cta-text-o: #240044;
    --black-text: #0e1525;
    --white-text: #ffffff;
    --primary-text: #ffdc00;
}

/*=============================
	:: 3.0 Reset CSS
===============================*/
a {
    text-decoration: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: Manrope !important;
    background-color: #f6f9fb;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    box-shadow: none !important;
    outline: 0 none !important;
}

.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/*=============================
	:: 4.0 Class Global
===============================*/
a:hover {
    text-decoration: none !important;
}

button:focus {
    outline: none !important;
}

.container-header {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

@media screen and (min-width: 1024px) {
    .container-header {
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
    }
}

/* container 0 -> 767px */
@media screen and (min-width: 325px) {
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 24px;
    }
}

/* container 768px - 1023px*/
@media screen and (min-width: 768px) {
    .container {
        width: 720px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

/* container 1024px - 1279px*/
@media screen and (min-width: 1024px) {
    .container {
        width: 944px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

/* container 1280px - 1439px*/
@media screen and (min-width: 1280px) {
    .container {
        width: 1120px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

/* container 1440px - 1599px*/
@media screen and (min-width: 1440px) {
    .container {
        width: 1120px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

/* container 1600px - 1919px*/
@media screen and (min-width: 1600px) {
    .container {
        width: 1280px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

/* container 1920px*/
.container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.badge {
    border-radius: 30px;
    padding: 4px 16px !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.72px;
}

.badge-secondary {
    background: #303030 !important;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #cccccc;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url("../img/icon/calendar.svg") no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}

.bg-gray {
    background-color: #f6f6f6;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Extra small devices (phones, 600px and down) */

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
th,
td {
    line-height: 1.4;
}

fw-3 {
    font-weight: 300 !important;
}

fw-4 {
    font-weight: 400 !important;
}

fw-5 {
    font-weight: 500 !important;
}

fw-6 {
    font-weight: bold !important;
}

fw-7 {
    font-weight: 700 !important;
}

/*=============================
	:: 4.1 Class Color
===============================*/

.text-primary {
    color: var(--primary-text) !important;
}

.text-black {
    color: var(--black-text) !important;
}

.text-cta {
    color: var(--cta-text) !important;
}

.text-cta-o {
    color: var(--cta-text-o) !important;
}

.text-white {
    color: var(--white-text) !important;
}

.text-danger {
    color: #ff2626 !important;
}

.text-success {
    color: #2feb42 !important;
}

.text-warning {
    color: #ffe81e !important;
}

/*=============================
	:: 4.1 Class Background
===============================*/

.bg-primary {
    background-color: var(--primary-bg) !important;
}

.bg-black {
    background-color: var(--black-bg) !important;
}

.bg-cta {
    background-color: var(--cta-bg) !important;
}

.bg-cta-o {
    background-color: var(--cta-bg-o) !important;
}

.bg-white {
    background-color: var(--white-bg) !important;
}

/*=============================
	:: 4.3 Class Button
===============================*/
.btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    cursor: pointer;
}

.btn.btn-primary {
    color: var(--white-text);
    background: var(--linear-gradient-bg);
    border: none;
    padding: 20px 40px;
    border-radius: 9999px;
}

.btn.btn--primary {
    padding: 16px 24px;
    color: var(--black-text);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--linear-gradient-bg);
}

.btn.btn-secondary {
    color: var(--black-text);
    background: var(--white-bg);
    border: 1px solid #000;
    padding: 20px 40px;
    border-radius: 9999px;
}

@media only screen and (max-width: 768px) {
    .btn.btn-primary,
    .btn.btn--primary,
    .btn.btn--cta,
    .btn.btn--gray {
        font-size: 14px;
        padding: 12px 24px;
    }

    .form-control {
        font-size: 14px;
    }
}

/*=============================
	:: 5.0 Layout CSS
===============================*/

#app {
    overflow-x: hidden;
}
.hamburger {
    display: none;
}
.cp-header-mobile {
    display: none;
}
.button-fixed {
    position: fixed;
    z-index: 99999;
    right: 32px;
    bottom: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #fff;
    box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.1);
}

.button-fixed__cs {
    cursor: pointer;

    svg {
        width: 32px;
        height: 32px;
    }
}

.button-fixed__cs .icon-2 {
    display: none;
}

.button-fixed__list {
    position: absolute;
    transform: translateY(-100%);
    top: -16px;
    display: none;
    gap: 16px;
    flex-direction: column;
}

.button-fixed__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: #fff;
    box-shadow: 2px 2px 12px 0px rgba(0, 0, 0, 0.1);
    margin-top: 16px;

    img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
}

/*=============================
	:: 5.1 Header
===============================*/
.cp-header {
    margin: 0 auto;
    /* max-width: 1840px; */
    top: 0;
    z-index: 999;
    transition: all 0.3s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -100%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.header-fixed {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9998;
    animation: fadeInDown 0.5s ease-out forwards;
}

.cp-header .cp-header-top {
    background-color: #96c5ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 40px;
    border-radius: 0 0 24px 24px;
    height: 44px;
}

/* .cp-header .cp-header-top .cp-header-top__left ul {
    display: flex;
    background-color: #368fff;
    padding-top: 6px;
    border-radius: 20px;
    padding-bottom: 6px;
} */

.cp-header .cp-header-top a {
    color: var(--white-text);
    text-decoration: none;
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* .cp-header .cp-header-top .cp-header-top__left ul li a {
    border-radius: 20px;
    padding-left: 16px;
    padding-right: 16px;
} */
/* .cp-header .cp-header-top .cp-header-top__left ul li a:hover {
    background-color: var(--white-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    color: #0a77ff;
} */
/* .cp-header .cp-header-top .cp-header-top__left ul li .active {
    background-color: var(--white-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    color: #0a77ff;
} */

.cp-header .cp-header-top .cp-header-top__right ul {
    display: flex;
    gap: 20px;
}

.cp-header .cp-header-top .cp-header-top__right ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-select {
    display: flex;
    align-items: center;
}

.language-select select {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    background-color: transparent;
    appearance: none;
    text-transform: none;
    font-size: 14px;
    cursor: pointer;
}

.language-select select:focus {
    outline: none;
}

.language-select select option {
    padding: 10px;
}

/*=============================
	:: 5.2 Footer
===============================*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.footer {
    overflow-x: hidden;
}

.footer-shape {
    width: 100%;
    height: 161px;
    margin-bottom: -10px;
}

.footer-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-footer {
    display: flex;
    padding: 0px 150px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    background: #001733;
}

.box-input {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-bottom: 1px solid var(--background-bg-solid-senary, #93969d);
    padding: 4px 0 0 0;
}

.box-input .infor {
    display: flex;
    width: 492px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.box-input .infor h2 {
    color: #f5f5f5;
    /* H2/Semibold */
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    /* 57.6px */
}

.box-input .infor p {
    color: #f5f5f5;
    /* BodySmall/Regular */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.input-box {
    display: flex;
    width: 787px;
    padding: 41px 59px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border: 1px solid #111;
    border-radius: 32px 32px 0px 0px;
    background: var(--background-bg-primary, #fff);
}
.input-box .input {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}
.contact-foot .input {
    gap: 0px !important;
}
.input-box .input input {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--border-border-secondary, #dbdcde);
    color: var(--text-placeholder, #626771);
    /* BodySmall/Regular */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.input div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}

.input-box button {
    display: flex;
    padding: 14px 36px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 9999px;
    background: var(
        --Button,
        linear-gradient(83deg, #0a77ff 23.35%, #5ca5ff 105.14%)
    );
    border: none;
    outline: none;
    cursor: pointer;
}

.input-box button span {
    color: var(--background-bg-primary, #fff);
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    text-transform: uppercase;
}

.box-content {
    display: flex;
    align-self: stretch;
    padding: 40px 0px 100px 0px;
    align-items: flex-start;
    gap: 248px;
}

.box-content .list-page {
    display: flex;
    align-items: center;
    gap: 56px;
    flex: 1 0 0;
    align-self: stretch;
}

.list-page ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.list-page ul li:first-child {
    color: var(--blue-blue-500, #0a77ff);
    /* BodyLarge/Medium */
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 133.333% */
}

.list-page ul li {
    color: var(--text-placeholder, #626771);
    /* BodySmall/Regular */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.box-content .list-infor {
    display: flex;
    width: 467px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.list-infor .infor-location {
    display: flex;
    /* max-width: 219.08px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.list-infor .infor-location div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.list-infor .infor-location div p:first-child {
    color: var(--text-heading-inverted, #fff);
    /* BodySmall/Regular */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.list-infor .infor-location div p {
    color: var(--text-placeholder, #626771);
    /* BodySmall/Regular */
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.list-infor .infor-icon {
    display: flex;
    align-items: center;
    gap: 32px;
}

.list-infor .infor-icon div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-infor .infor-icon div:first-child a {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 12px 0px 12px;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.list-infor .infor-icon div:first-child a img {
    width: 20px;
    height: 20px;
}

.list-infor .infor-icon div img {
    width: 168px;
    height: 63px;
    object-fit: cover;
}

.footer-end {
    display: flex;
    height: 70.2px;
    padding: 26.2px 0px 25px 0px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-top: 1.2px solid var(--background-bg-solid-senary, #93969d);
}

.footer-end div p {
    color: var(--text-placeholder, #626771);
    /* CaptionLarge/Regular */
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.footer-end .footer-end-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.footer-marquee {
    position: relative;
    display: flex;
    padding-top: 200px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.wapper {
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    background: var(--blue-blue-500, #0a77ff);
    color: white;
    font-size: 48px;
    font-weight: bold;
    transform: rotate(1deg);
    padding: 24px 40px;
    top: 30px;
    width: 100%;
}

.wapper-two {
    width: 100%;
    transform: rotate(-2deg);
    padding: 24px 40px;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    background: var(--blue-blue-900, #053673);
    color: white;
    font-size: 48px;
    font-weight: bold;
    position: absolute;
    top: 100px;
}

.marquee-text {
    display: flex;
    gap: 56px;
}

.marquee-text div {
    display: flex;
    align-items: center;
    gap: 56px;
}

.marquee-text div img {
    width: 32px;
    height: 47.982px;
    aspect-ratio: 32/47.98;
}

.marquee {
}

.marquee .js-marquee {
    display: flex;
    gap: 56px;
}

.marquee .js-marquee div {
    display: flex;
    align-items: center;
    gap: 56px;
}

.marquee-two .js-marquee {
    display: flex;
    gap: 56px;
}

.marquee-two .js-marquee div {
    display: flex;
    align-items: center;
    gap: 56px;
}

.skewed-section {
    position: relative;
    padding: 60px 0;
    background: #001733;
    clip-path: polygon(0% 62.8%, 100% 0%, 100% 97%, 0% 100%);
    margin-bottom: -5px;
}

.skewed-section::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 20px;
    height: 40px;
    background: #f6f9fb;
}

.skewed-section::after {
    content: "";
    position: absolute;
    top: 55px;
    width: 20px;
    height: 40px;
    background: #f6f9fb;
}

.skewed-section::before {
    border-bottom-left-radius: 20px;
}

.skewed-section::after {
    border-bottom-right-radius: 20px;
}

.skewed-section .content .shape-left {
    position: absolute;
    top: 74px;
    left: 0;
    width: 20px;
    height: 40px;
    background: #001733;
    z-index: 20;
    border-top-left-radius: 50px;
}

.skewed-section .content .shape-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 40px;
    background: #001733;
    z-index: 20;
    border-top-right-radius: 50px;
}

/* container 1600px - 1919px*/
@media screen and (min-width: 1600px) and (max-width: 1919px) {
    .container {
        width: 1280px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .wapper {
        font-size: 36px;
        line-height: 44px;
    }

    .wapper-two {
        font-size: 36px;
        line-height: 44px;
    }

    .box-input .infor h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .input-box {
        padding: 32px 44px;
        gap: 32px;
    }

    .box-content {
        padding: 40px 0px 80px 0px;
        gap: 200px;
    }

    .box-content .list-page {
        padding-top: 14px;
    }

    .list-infor .infor-icon {
        padding-top: 24px;
    }

    .footer-end {
        padding: 24px 0;
    }
}

/* container 1440px - 1599px*/
@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .container {
        width: 1120px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .wapper {
        font-size: 30px;
        line-height: 40px;
        padding: 16px 40px;
    }

    .wapper-two {
        font-size: 30px;
        line-height: 40px;
        padding: 16px 40px;
    }

    .box-content {
        gap: 110px;
    }

    .input-box {
        width: 660px;
        padding: 32px 44px;
    }

    .box-input .infor h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .box-input .infor {
        width: 346px;
    }

    .box-content .list-page {
        padding-top: 14px;
    }

    .list-infor .infor-icon {
        padding-top: 24px;
    }
}

/* container 1280px - 1439px*/
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .container {
        width: 1120px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .content-footer {
        padding: 0 80px;
    }

    .wapper {
        font-size: 30px;
        line-height: 40px;
        padding: 16px 40px;
    }

    .wapper-two {
        font-size: 30px;
        line-height: 40px;
        padding: 16px 40px;
    }

    .box-content {
        gap: 110px;
        padding: 40px 0px 60px 0px;
    }

    .input-box {
        width: 660px;
        padding: 32px 44px;
    }

    .box-input .infor h2 {
        height: 70px;
        font-size: 36px;
        line-height: 44px;
    }

    .box-input .infor {
        width: 346px;
    }

    .box-content .list-page {
        padding-top: 14px;
    }

    .list-infor .infor-icon {
        padding-top: 24px;
    }

    .footer-end {
        padding: 20px 0;
    }

    .list-page ul {
        gap: 16px;
    }
}

/* container 1024px - 1279px*/
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .container {
        width: 944px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .wapper {
        font-size: 24px;
        line-height: 32px;
        padding: 12px 32px;
    }

    .wapper-two {
        font-size: 24px;
        line-height: 32px;
        padding: 12px 32px;
    }

    .content-footer {
        padding: 0 40px;
    }

    .input-box {
        padding: 24px 32px;
        width: 558px;
        gap: 32px;
        border-radius: 24px 24px 0px 0px;
    }

    .box-input .infor {
        width: 316px;
        gap: 0;
    }

    .box-input .infor h2 {
        height: 40px;
        font-size: 24px;
        line-height: 32px;
    }

    .box-content {
        padding: 40px 0px 40px 0px;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .box-content .list-infor {
        width: 100%;
    }

    .list-infor .infor-location {
        max-width: 100%;
        flex-direction: row;
        gap: 16px;
    }

    .list-infor .infor-location div {
        flex: 1 0 0;
    }

    .list-infor .infor-icon {
        padding-top: 8px;
    }

    .box-content .list-page {
        width: 100%;
    }

    .list-page ul {
        flex: 1 0 0;
    }

    .footer-end {
        padding: 20px 0;
    }
}

/* container 768px - 1023px*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        width: 720px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .wapper {
        font-size: 20px;
        line-height: 28px;
        padding: 8px 32px;
    }

    .wapper-two {
        font-size: 20px;
        line-height: 28px;
        padding: 8px 32px;
    }

    .content-footer {
        padding: 0 24px;
    }

    .box-input {
        flex-direction: column;
        gap: 24px;
    }

    .input-box {
        padding: 24px;
        width: 100%;
        gap: 32px;
    }

    .box-input .infor {
        width: 316px;
        gap: 0;
    }

    .box-input .infor h2 {
        height: 40px;
        font-size: 24px;
        line-height: 32px;
    }

    .box-content {
        padding: 24px 0px 40px 0px;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .box-content .list-infor {
        width: 100%;
    }

    .list-infor .infor-location {
        max-width: 100%;
        flex-direction: row;
        gap: 16px;
    }

    .list-infor .infor-location div {
        flex: 1 0 0;
    }

    .list-infor .infor-icon {
        padding-top: 8px;
    }

    .box-content .list-page {
        width: 100%;
    }

    .list-page ul {
        flex: 1 0 0;
    }

    .footer-end {
        padding: 20px 0;
    }
}

/* container 0 -> 767px */
@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 24px;
    }

    .marquee .js-marquee {
        gap: 24px;
    }

    .marquee .js-marquee div {
        gap: 24px;
    }

    .marquee-two .js-marquee div {
        gap: 24px;
    }

    .marquee-two .js-marquee {
        gap: 24px;
    }

    .wapper div img {
        width: 24px;
        height: 24px;
    }

    .wapper-two div img {
        width: 24px;
        height: 24px;
    }

    .wapper {
        font-size: 20px;
        line-height: 28px;
        padding: 8px 32px;
    }

    .wapper-two {
        font-size: 20px;
        line-height: 28px;
        padding: 8px 32px;
    }

    .content-footer {
        padding: 0 24px;
    }

    .box-input {
        flex-direction: column;
        gap: 24px;
    }

    .input-box {
        padding: 24px;
        width: 100%;
        gap: 32px;
        border-radius: 12px 12px 0px 0px;
    }

    .box-input .infor {
        width: 316px;
        gap: 0;
    }

    .box-input .infor h2 {
        height: 40px;
        font-size: 24px;
        line-height: 32px;
    }

    .box-content {
        padding: 24px 0px 40px 0px;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .box-content .list-infor {
        width: 100%;
    }

    .list-infor .infor-location {
        max-width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .list-infor .infor-location div {
        flex: 1 0 0;
    }

    .list-infor .infor-icon {
        padding-top: 8px;
    }

    .box-content .list-page {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        row-gap: 24px;
    }

    .list-page ul {
        flex: 1 0 0;
    }

    .footer-end {
        display: flex;
        width: 390px;
        padding: 20px 24px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Màn hình tablet (dưới 1024px) */
@media (max-width: 1024px) {
    .cp-header .cp-header-bottom .cp-header-bottom__center ul li a {
        position: relative;
        text-decoration: none;
        color: var(--black-text);
        font-weight: 700;
        font-size: 14px;
        padding: 10px 16px;
        border-radius: 9999px;
        overflow: hidden;
        transition: color 0.3s ease-in-out;
        z-index: 0;
    }
}

/* Màn hình điện thoại (dưới 768px) */
@media (max-width: 768px) {
}

/* Màn hình nhỏ hơn (dưới 480px, ví dụ iPhone 5 hoặc các thiết bị rất nhỏ) */
@media (max-width: 480px) {
}
