@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600&family=Roboto:ital,wght@0,400;0,500;1,100;1,500&display=swap');

:root {
    --color-main: #1565C0;
    --color-nen: #50AFFD;
    --color-bg: #EFEFEF;
}

body {
    font-family: 'Roboto';
    margin: 0;
}

section {
    position: relative;
  
    overflow: hidden;
    background-image: url(./img/bggg.png);
    background-size: cover;
}

.mb {
 
    width: 100%;
    background-color: var(--color-main);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mb>h1 {
    color: white;
    font-size: calc(24px + 3vw);
}

.mb>p {
    color: white;
    font-size: calc(16px + 1vw);
    width: 80%;
    text-align: center;
}


.absolute {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 200%;
    height: 200%;
    background-color: var(--color-nen);
    z-index: -1;
    transform: rotate(160deg);
}

.logo {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: start
}

.logo>img {
    height: 140px;
    width: max-content;
    margin: 20px;
}

@media (max-width: 1981px) {
    .logo>img {
        height: 100px;
    }

    .mb {
        display: none;
    }
}

@media (max-width: 1550px) {
    .logo>img {
        height: 70px;
    }
}

@media (max-width: 1280px) {
    .logo>img {
        height: 50px;
    }
}

@media (max-width: 1024px) {
    .logo>img {
        height: 40px;
    }
}

.title {
    color: var(--color-main);
    text-align: center;
    margin: 10px 0;
    font-size: calc(28px + 1.5vw);
}

.main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.main-table {
    width: 90%;
    padding: 10px 20px;
    border: 5px solid var(--color-main);
    border-radius: 25px;
    background-color: var(--color-bg);
    position: relative;
    margin: 10px auto;
}


.main-table>h3 {
    padding: 5px 25px;
    background-color: var(--color-main);
    color: white;
    font-size: 24px;
    border-radius: 8px;
    width: max-content;
    font-weight: 500;
    margin: 10px auto;
}

.list-slick {
    list-style: none;
    padding: 0;
}

.list-slick>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    border-radius: 16px;
    background-color: white;
    margin: 10px 0;
}

.list-slick>li>p {
    text-align: center;
    margin: 0;
    font-size: 16px;
}

.list-slick>li:nth-child(1) {
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0;
    background-color: unset;
}

.list-slick>li>p:nth-child(1) {
    width: 10%;
}

.list-slick>li>p:nth-child(2) {
    width: 20%;
}

.list-slick>li>p:nth-child(3) {
    width: 15%;
}

.list-slick>li>p:nth-child(4) {
    width: 20%;
}

.list-slick>li>p:nth-child(5) {
    width: 35%;
}

.list-slick>li:nth-child(7) {
    margin-bottom: 30px;
}

@media (max-width: 1280px) {
    .list-slick>li:nth-child(1) {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .list-slick>li {
        padding: 2px 0;
        margin: 10px 0;
    }

    .list-slick>li>p {
        font-size: 12px;
    }
}


.main-bottom {
    width: 98%;
    margin: 0 1%;
    display: flex;
    justify-content: space-between;
}

.main-bottom>img {
    width: max-content;
    height: 150px;
    object-fit: cover;
    object-position: 0px bottom;
}

.caffee {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 300px;
    width: max-content;
    z-index: -1;
}


.main-bottom {
    width: 98%;
    margin: 0 1%;
    display: flex;
    justify-content: end;
}

.logo-bt {
    display: flex;
    align-items: center;
    height: 150px;
    margin-right: 50px;
}

.logo-bt>img {
    height: 100px;
    width: max-content;
}

.logo-bt-dot {
    height: 100px;
    width: 5px;
    background-color: white;
    border-radius: 16px;
    margin: 0 20px;
}

.logo-bt-contact {
    display: flex;
    flex-direction: column;
}

.contact-items {
    display: flex;
    align-items: center;
}

.contact-items>i {
    font-size: 24px;
    color: white;
    margin-right: 10px;
    font-weight: 600;
}

.contact-items>p {
    font-size: 20px;
    color: white;
    margin-right: 10px;
    font-weight: 300;
}

@media (max-width: 1981px) {
    .main-bottom {
        margin-top: 30px;
    }

    .logo-bt>img {
        height: 140px;
        width: max-content;
    }

    .logo-bt-dot {
        height: 140px;
    }

    .contact-items>i {
        font-size: calc(16px + 1vw);
    }

    .contact-items>p {
        font-size: calc(16px + 0.5vw);
    }
}

@media (max-width: 1550px) {
    .main-bottom {
        margin-top: 0;
    }

    .logo-bt>img {
        height: 100px;
        width: max-content;
    }

    .logo-bt-dot {
        height: 100px;
    }

    .contact-items>i {
        font-size: calc(12px + 1vw);
    }

    .contact-items>p {
        font-size: calc(12px + 0.5vw);
    }
}


@media (max-width: 1024px) {
    .caffee {
        height: 250px;
    }

    .logo-bt {
        height: 80px;
    }

    .logo-bt>img {
        height: 70px;
    }

    .logo-bt-dot {
        height: 70px;
        width: 3px;
    }

    .contact-items>i {
        font-size: calc(10px + 1vw);
    }

    .contact-items>p {
        font-size: calc(10px + 0.5vw);
    }
}

.table {
    margin: 0 1%;
    background: white;
    width: 48%;
    padding: 30px 0;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    margin-top: 50px;
    user-select: none;
    font-size: 16px;
    border: .5px solid var(--color-nen);
}

.table .price-section>h1 {
    font-size: 1.8em;
    text-align: center;
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--color-main);
}


.table .package-name {
    width: 100%;
    height: 2px;
    margin: 25px 0;
    position: relative;
    padding: 0;
}

.table .package-name::before {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    font-weight: 500;
    background: #fff;
    padding: 0 15px;
    transform: translate(-50%, -50%);
}

.premium .package-name {
    background: var(--color-main);
}

.premium .package-name.c1::before {
    content: "QR";
    color: var(--color-main);
    font-size: 24px;
}

.premium .package-name.c2::before {
    content: "Contact";
    color: var(--color-main);
    font-size: 20px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact>div {
    width: 20px;
}

.contact>i {
    font-size: 1.1em;
    color: var(--color-main);
    margin: 0 10px;
}

.contact>p {
    margin: 0;
    font-size: 1.1em;
    font-weight: 300;
    color: var(--color-main);
}

.img>img {
    width: 90%;
    object-fit: cover;
    margin-left: -16px;
}

@media (max-width: 1020px) {
    .wrapper .table {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media (max-width: 698px) {
    .wrapper .table {
        width: 100%;
    }
}

.table .ribbon {
    width: 150px;
    height: 125px;
    position: absolute;
    top: -10px;
    left: -10px;
    overflow: hidden;
}

.table .ribbon::before,
.table .ribbon::after {
    position: absolute;
    content: "";
    z-index: -1;
    display: block;
    border: 7px solid var(--color-nen);
    border-top-color: transparent;
    border-left-color: transparent;
}

.table .ribbon::before {
    top: 0px;
    right: 28px;
}

.table .ribbon::after {
    bottom: 3px;
    left: 0px;
}

.table .ribbon span {
    position: absolute;
    top: 30px;
    right: 0;
    transform: rotate(-45deg);
    width: 200px;
    background: var(--color-main);
    padding: 10px 0;
    color: #fff;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}


#slick {
    position: relative;
}

.prev {
    position: absolute;
    bottom: -5px;
    left: 35%;
}

.next {
    position: absolute;
    bottom: -5px;
    right: 35%;
}

.prev>i,
.next>i {
    font-size: 18px;
    color: var(--color-main);
}

.slick-dots {
    list-style: none;
    padding: 0;
    display: flex !important;
    justify-content: center;
    margin-top: -20px;
}

.slick-dots>li>button {
    font-size: 12px;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-nen);
    border: none;
    margin: 0 5px;
}

.slick-dots>.slick-active>button {
    background-color: var(--color-main);
    border: none;
}

@media (max-width: 1380px) {
    .table .price-section>h1 {
        font-size: 36px;
    }

}

@media (max-width:980px) {
    section {
        display: none;
    }

    .mb {
        display: flex;
    }
}

.contactqr {
    display: flex;
    width: 100%;
    align-items: center;
}

.qr {
    display: 100%;
    width: 42%;
    margin-left: 10px;
}

.qr>img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    border: 3px solid var(--color-main);
    padding: 0;
}

.infor {
    flex: 1;
}

.infor>h1 {
    font-size: calc(12px + 0.75vw);
    color: var(--color-main);
    padding: 0 10px;
    margin: 0;
}

.infor>h2>span,
.infor>h3>span {
    color: black;
    font-weight: 500;
}

.infor>h2,
.infor>h3 {
    font-size: calc(12px + 0.3vw);
    color: var(--color-main);
    margin: 0;
    line-height: 1.5;
    padding: 0 10px;
    font-weight: 600;
}

.wrap {
    display: flex;
    justify-content: space-between;
}

.bught {
    width: 100%;
}

.bughtwrap {
    border-radius: 16px;
    border: .5px solid var(--color-nen);
    background-color: white;
    height: 100%;
    margin: 1%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.items-top {
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    width: max-content;
    height: max-content;
    padding: 5px 15px;
    background-color: #1565C0;
    color: white;
    margin: 10px 0;
    position: absolute;
    left: -10px;
}

.items {
    border-radius: 8px;
    border: .5px solid var(--color-nen);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    user-select: none;
    margin: 0 10px;
    position: relative;
}

.items-img>img {
    width: 100%;
    aspect-ratio: 9/10;
    object-fit: cover;
    object-position: top center;
}

.items-bottom {
    padding: 10px;
}

.items-bottom>p {
    font-size: 0.6em;
    margin: 0;
}

.items-bottom>h1 {
    font-size: 1em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.items-bottom>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.items-bottom h4 {
    font-size: 0.8em;
    color: var(--color-main);
    margin: 0;
}

.items-bottom p {
    font-size: 0.7em;
    color: var(--color-main);
    margin: 0;
    color: unset;
}

.slick-arrow {
    width: max-content;
}

.preve {
    position: absolute;
    top: calc(50% - 16px);
    left: -10px;
    background-color: white;
    padding: 1px 6px;
    z-index: 999;
    border-radius: 8px;
    border: .5px solid var(--color-main);
}

.preve>i {
    font-size: 25px;
}

.nexte {
    position: absolute;
    top: calc(50% - 16px);
    right: -10px;
    background-color: white;
    padding: 1px 6px;
    z-index: 999;
    border-radius: 8px;
    border: .5px solid var(--color-main);
}

.nexte>i {
    font-size: 25px;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999999;
}

.bgd{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999999999;
}
.img-gsfdasd13{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40%;
    height: max-content;
    transform: translate(-50%, -50%);
    z-index: 9999999999999999;
}

.img-gsfdasd13 img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    height: max-content;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 999999999999;
    border-radius: 8px;
    padding: 20px;
}

.box img {
    aspect-ratio: 10/10;
    object-fit: cover;
    border: 1px solid black;
}

#img1 {
    width: 100%;
    border: 1px solid black;
    margin-bottom: 10px;
    margin-top: 10px;
}

.hinhanh>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hinhanh>div>img {
    width: 32%;
    object-fit: cover;
}

.thongtin {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thongtin span {
    font-size: 1em;
    font-weight: 500;
    margin: 20px;
}

.thongtin h1 {
    font-size: 1.5em;
    font-weight: 500;
    margin: 10px 20px 10px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thongtin h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--color-main);
    margin: 0;
}

.thongtin h3 {
    font-size: 1em;
    color: unset;
    font-weight: 500;
    margin: 0;
    margin-left: 30px;
}

.thongtin p {
    font-size: 1em;
    font-weight: 500;
    margin: 10px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.thongtin .feedback {
    display: flex;
    margin: 20px;
    align-items: center;
}

.thongtin-bottom {
    font-size: 16px;
}

.thongtin-bottom>.border-top {
    width: 90%;
    margin: 0 20px;
    height: 2px;
    background-color: rgb(58, 58, 58);
}

.Share {
    display: flex;
    margin: 20px;
    align-items: center;
}

.Share>p {
    font-size: 1em;
    margin-left: 10px;
    margin-bottom: unset;
}

.thongtin-contact {
    display: flex;
    margin: 10px;
    align-items: center;
}

.box svg {
    margin: 0 10px;
    width: 30px;
    height: 30px;
    padding: 3px;
    background-color: var(--color-main);
    fill: var(--color-nen);
    border-radius: 3px;
}

#Box_1412c>.background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: box1412cBox 0.3s linear forwards;
    z-index: 99998;
}

@keyframes box1412cBox {
    0% {
        background-color: rgba(0, 0, 0, 0);
    }

    100% {
        background-color: rgba(0, 0, 0, 0.4);
    }
}

#Box_1412c>.box {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 650px;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 99999;
    width: 60%;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding: 30px;
    border-radius: 16px;
}

#Box_1412c>.box>div>.title {
    font-size: 42px;
    text-align: center;
    margin: 15px 0;
    font-family: 'Roboto';
    color: var(--color-text);
}

#Box_1412c>.box>div>.dots {
    display: flex;
    width: 60%;
    justify-content: space-between;
    margin: 20px auto 50px auto;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

#Box_1412c>.box>div>.dots>.dot {
    position: relative;
}

#Box_1412c>.box>div>.dots>.dot>p {
    font-size: 18px;
    border-radius: 50%;
    background-color: rgb(169, 169, 169);
    ;
    margin: 0;
    color: white;
    font-weight: 600;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#Box_1412c>.box>div>.dots>.dot.acc>p {
    background-color: var(--color-main);
    color: white;
}

#Box_1412c>.box>div>.dots>.line {
    flex: 1;
    height: 3px;
}

#Box_1412c>.box>div>.dots>.line>p {
    height: 3px;
    background-color: var(--color-main);
    animation: box1412cLine 0.5s linear forwards;
    display: none;
}

@keyframes box1412cLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

#Box_1412c>.box>div>.content {
    display: none;
}

#Box_1412c>.box>div>.content.acc {
    display: flex;
    flex-direction: column;
}

#Box_1412c .button {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: end;
}

#Box_1412c .dot>p::before {
    position: absolute;
    color: black;
    font-size: 18px;
    width: max-content;
    bottom: 40px;
}

#Box_1412c .d1>p::before {
    content: 'Chi Tiết Sản Phẩm';
}

#Box_1412c .d2>p::before {
    content: 'Mục Đích Của Chúng Tôi';
}

#Box_1412c .d3>p::before {
    content: 'Thanh Toán Sản Phẩm';
}

.out,
.nextt,
.back,
.suc {
    background-color: var(--color-main);
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 1em;
    margin: 5px 0;
    color: white;
}

.out {
    background-color: var(--color-main);
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 1em;
    margin: 5px 0;
    color: white;
}

.pay {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#Box_1412c .content .button.fh {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pay img {
    width: 30%;
    aspect-ratio: 1/1;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin: 20px 0;
    border: 2px solid var(--color-nen);
    border-radius: 16px;
}

.pay h1 {
    font-size: 2em;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0;
}

.pay h1>span {
    color: #1565C0;
    margin: 0;
}

.pay h1>p {
    color: var(--color-nen);
    margin: 0;
}

.pay h2 {
    font-size: 1em;
    text-align: center;
}

.pay h2>span {
    font-size: 1em;
    text-align: center;
    color: var(--color-main);
}

.purpose {
    font-size: 16px;
}

.purpose>h1 {
    color: var(--color-main);
    font-size: 1.3em;
}

.purpose>h1>span {
    color: var(--color-main);
    font-size: 1.3em;
    font-weight: 600;
}

.purpose>p {
    color: var(--color-main);
    font-size: .7em;
    width: 80%;
    text-align: justify
}

.purposedot {
    width: 3px;
    height: 100%;
    margin: 0 auto;
    background-color: var(--color-main);
    position: relative;
    z-index: 1111;
}

.purposedot>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--color-main);
    z-index: 11111;
    background-color: white;
}

.text-center{
    text-align: center;
}

.paginate_button.next,.paginate_button.previous{
    display: none!important;
}