@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --1col: #54bebc;
    --1-2-col: #60d3d1;
    --2col: #bbb0aa;
    --no-pure-white: #f7f7f7;
    --black: #1d1d1d;
    --soft-black: #333333b7;
    --poppin: 'Poppins', sans-serif;
    --trans-black: rgba(0, 0, 0, 0.2);
    --trns-light: rgba(255, 255, 255, 0.9);
    --die-white: rgba(255, 255, 255, 0.4);
    --gray: rgb(100, 100, 100);
}

a:hover {
    text-decoration: none !important;
}

.top-navbars {
    width: 100%;
    height: 100px;
    display: flex;
    position: absolute;
    top: 0;
    z-index: 3;
    font-family: var(--poppin);
    justify-content: space-between;
    padding: 0 8%;
    background: var(--no-pure-white);
    align-items: center;
    color: var(--black);
}

.nav-item {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item>div {
    margin: 0 10px;
}

.phone {
    display: flex;
    height: 100%;
    align-items: center;
}

.phone span {
    display: none;
}

.txt {
    margin: 0 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.phone i {
    padding: 15px;
    font-size: 1rem;
    color: var(--no-pure-white);
    background: var(--1col);
    border-radius: 30px;
}

.txt h1 {
    font-size: 0.85rem;
    color: var(--soft-black);
    margin-bottom: 0 !important;
}

.txt h2 {
    font-size: 1rem;
    margin-bottom: 0 !important;
}

.search {
    display: flex;
    align-items: center;
}

.search input {
    padding: 10px 5px 10px 20px;
    border-radius: 5rem;
    outline: none;
    width: 300px;
    border: var(--trans-black) 1px solid;
}

.search i {
    color: var(--soft-black);
    transform: translateX(-30px);
}

.top-more {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
}

.top-more a {
    /* padding: 10px 30px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--1col);
    color: var(--no-pure-white);
    text-decoration: none;
    border-radius: 5rem;
    transition: 0.3s;
}

.top-more a:hover {
    color: var(--no-pure-white);
    background: var(--1-2-col);
    transition: 0.3s;
}

.under-nav {
    width: 100%;
    height: 40px;
    display: flex;
    position: absolute;
    top: 100px;
    z-index: 3;
    font-family: var(--poppin);
    justify-content: space-between;
    padding: 0 8%;
    background: var(--2col);
    align-items: center;
}

.under-nav ul {
    display: flex;
    margin-bottom: 0 !important;

}

.under-nav ul li {
    list-style: none;
    margin: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.under-nav ul li a {
    text-decoration: none;
    color: var(--trns-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.under-nav ul li a:hover {
    color: var(--soft-black);
}

.under-nav ul li a.active {
    color: var(--black);
}


.carousel-item .img-warp {
    width: 100%;
    /* border-radius: 20px; */
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.img-warp.img1,
.img-warp.img2,
.img-warp.img3 {
    background-position: center;
}

.img-warp.img1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/bali2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.img-warp.img2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/item_2.jpg');
    background-position: center;
    background-size: cover;
}

.img-warp.img3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/item_3.jpg');
    background-position: center;
    background-size: cover;
}

.caro .carousel-indicators li {
    width: 10px;
    height: 5px;
    border-radius: 2rem;
    background-color: var(--die-white);
    transition: 0.3s;
}

.caro .carousel-indicators .active {
    width: 15px;
    background: white;
    transition: 0.3s;
}

.body {
    width: 100%;
    padding: 0 30px;
    padding-bottom: 50px;
    background: #e9e9e9;
}

.sec1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px var(--2col) solid;
}

.sec2 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tags {
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    margin-top: 30px;
}

.tags h1 {
    font-size: 1.4rem;
    font-family: var(--poppin);
}

.list-card {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fa-star {
    color: rgb(255, 255, 21);
}

.cards-warp {
    margin-bottom: 20px;
}

.cards {
    width: 300px;
    height: 315px;
    display: flex;
    padding: 0 10px;
    flex-direction: column;
    background: white;
    overflow: hidden;
    font-family: var(--poppin);
}

.cards-img {
    max-width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 0.3rem 0.3rem 0 0;
}

.cards-img img {
    width: 100%;
    max-height: 200px;
}

.txt-head {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 65px;
    padding-bottom: 10px;
    border-bottom: 1px var(--2col) solid;
}

.txt-head-more {
    font-size: 12px;
    display: flex;
    flex-direction: column;
}

.likes {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
}

.likes i {
    color: rgb(255, 182, 182);
    transition: 0.3s;
    cursor: pointer;
}

.likes i:hover {
    color: rgb(255, 45, 45);
    transition: 0.3s;
}


.likes p {
    margin-bottom: 0;
    margin-left: 10px;
    font-family: var(--poppin);
}

.cards h6 {
    margin-bottom: 0;
    font-weight: 600;
}

.labels {
    display: flex;
    flex-direction: column;
}

.labels-more p,
.labels-more span,
.labels-more a {
    font-size: 13px;
    margin-bottom: 0;
    margin-right: 5px;
}

.labels-more {
    margin-top: 10px;
    display: flex;
}

.txt-info {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--2col) 1px solid;
}

.txt-info h6:nth-child(1) {
    color: var(--soft-black);
}

.txt-desc {
    width: 100%;
    margin-top: 10px;
    height: 120px;
    border-bottom: var(--2col) 1px solid;
}

.txt-desc p,
.txt-desc a {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 0;
}

.txt-desc a {
    width: 100%;
    display: flex;
    justify-content: center;

}

.now {
    margin-top: 10px;
    display: flex;
    width: 100%;
    align-self: center;
    justify-content: center;
}

.now a {
    width: 200px;
    height: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background: var(--1col);
    transition: 0.3s;
}

.now a:hover {
    background: var(--1-2-col);
    border-radius: 3rem;
    color: white;
    transition: 0.3s;
}

.more-c {
    width: 100%;
    height: 90px;
    display: flex;
    padding-top: 5px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.more-c a {
    width: 100%;
    color: white;
    border-radius: 0;
    text-transform: uppercase;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--1col);
    transition: 0.3s;
}

.more-c a:hover {
    color: white;
    background: var(--1-2-col);
    border-radius: 3rem;
    transition: 0.3s;
}

.sec2 .labels-more {
    color: var(--soft-black);
}

.sec2 .txt-head-more {
    display: flex;
    height: 100%;
    justify-content: center;
}

.sec2 .cards {
    height: 200px;
}

.txt-head-more a {
    width: 100px;
    color: white;
    border-radius: 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--1col);
    transition: 0.3s;
}

.txt-head-more a:hover {
    color: white;
    border-radius: 3rem;
    background: var(--1-2-col);
    transition: 0.3s;
}

.card-ribbon {
    width: 100%;
    height: 100px;
}

.card-ribbon .ribbon {
    width: 300px;
    margin-top: 30px;
    height: 60px;
    transform: translateX(-20px);
    position: absolute;
    display: flex;
    padding: 0 10px 0 15px;
    background: var(--2col);
    border-radius: 3rem 3rem 3rem 0;
    box-shadow: 5px 5px 10px var(--trans-black);

}

.card-ribbon .ribbon::before {
    content: '';
    position: absolute;
    width: 10px;
    margin-top: 60px;
    height: 20px;
    transform: translateX(-15px);
    border-radius: 0 0 0 3rem;
    background: var(--2col);
    z-index: -2;
}

.card-ribbon .ribbon::after {
    content: '';
    position: absolute;
    width: 10px;
    transform: translateX(-15px);
    z-index: -1;
    margin-top: 60px;

    height: 20px;
    border-radius: 3rem 0 0 3rem;
    background: #a8938a;
}

.ribbon p,
.ribbon h6 {
    font-style: normal !important;
    margin-bottom: 0;
    font-size: 12px;
}

.r-content {
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.r-content:nth-child(1) {
    border-right: 1px var(--die-white) solid;
}

.r-content i {
    margin-right: 20px;
    color: rgb(255, 255, 255);
}

.sub-rc {
    text-align: center;
}

.footer {
    width: 100%;
    height: 250px;
    background: white;
    padding: 40px 30px 10px 30px;
}

.foot-c {
    display: flex;
    width: 100%;
    height: 100%;

}

.foot-part p {
    margin-bottom: 0;
    color: #6d6d6d;
    font-size: 13px;
}

.foot-part {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.foot-part h6 {
    height: 30px;
    margin-top: 10px;
}

.foot-part a {
    color: #6d6d6d;
    font-size: 13px;
}

.foot-part a:hover {
    color: var(--black);
}

li::marker {
    color: var(--1col);
}

.sub-part li {
    margin: 0 0 0 20px;
}

.foot-group {
    display: flex;
}

.foot-group input {
    padding: 10px 20px;
    font-size: 13px;
    outline: none;
    border: 1px solid var(--2col);
    border-radius: 3rem 0 0 3rem;
    z-index: 1;
}

.foot-group button {
    outline: none;
    font-size: 13px;
    border: none;
    color: white;
    padding-right: 5px;
    cursor: pointer;
    width: 80px;
    z-index: 2;
    transform: translateX(-1px);
    border-radius: 0 3rem 3rem 0;
    background: var(--1col);
    transition: 0.3s;
}

.foot-group button:focus {
    outline: none;
}

.foot-group button:hover {
    background: var(--1-2-col);
    transition: 0.3s;
}

.bottom-nav p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--gray);
}

.bottom-nav {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--2col);
    justify-content: space-between;
}

.bottom-item {
    display: flex;
}

.bottom-item a {
    display: flex;
    padding: 0 10px;
    width: auto;
    font-size: 13px;
    height: 25px;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    border-right: 1px solid var(--trans-black);
    transition: 0.3s;
}

.bottom-item a:hover {
    color: var(--black);
    transition: 0.3s;
}

.bottom-item a:nth-last-child(1) {
    border-right: none;
}

.hamburger {
    display: none;
}



.scroll-up {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: var(--1col);
    color: white;
    border-radius: 3rem;
    z-index: 999;
    transition: 0.3s;
}

.scroll-up:hover {
    background: var(--1-2-col);
    transition: 0.3s;
}

.booking-content {
    position: absolute;
    width: 100%;
    /* left: 5%; */
    height: auto;
    z-index: 1;
    display: flex;
    top: 515px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bk-c {
    display: flex;
}

.booking {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1200px;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    background: white;
}

.group-book {
    width: 290px;
    height: 100%;
    padding: 0 0 0 10px;
}

.book-h {
    width: 100%;
    display: flex;
    height: 35px;
}

.what h6::before {
    content: '01';
    color: var(--1col);
    margin-right: 10px;
}

.where h6::before {
    content: '02';
    color: var(--1col);
    margin-right: 10px;
}

.when h6::before {
    content: '03';
    color: var(--1col);
    margin-right: 10px;
}

.who h6::before {
    content: '04';
    color: var(--1col);
    margin-right: 10px;
}

.where .book-b {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.when .book-b,
.who .book-b {
    flex-direction: row;
}

.where .book-b label,
.when .book-b label,
.who .book-b label {
    padding-left: 5px;
}

.book-b>input {
    padding: 10px 20px;
    outline: none;
    border: var(--trans-black) 1px solid;
    border-radius: 3rem;
}

.book-b {
    width: 100%;
    height: 120px;
    font-size: 13px;
    overflow: hidden;
    /* margin: 0 0 40px 0; */
    display: flex;
    flex-wrap: wrap;
    border-right: 1px solid var(--2col);
}

.last {
    border-right: none;
}

.radio-ctrl {
    width: 50%;
    display: flex;
    height: 40px;
    align-items: center;
}

.radio-ctrl input {
    accent-color: var(--gray);
}

.radio-ctrl label {
    margin-bottom: 0;
    font-size: 13px;
    margin-left: 5px;
}

.who .book-s {
    width: 90px;
}

.book-s {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 0 5px;
}

.book-s:nth-child(1) {
    padding-left: 0;
}

.book-s input {
    padding: 10px 10px;
    outline: none;
    border: var(--trans-black) 1px solid;
    border-radius: 3rem;
}

.book-submit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.book-submit button {
    width: 200px;
    height: 40px;
    background: var(--1col);
    outline: none;
    color: white;
    border-radius: 1rem 1rem 0 0;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.book-submit button:focus {
    border: none;
    outline: none;
}

.book-submit button:hover {
    background: var(--1-2-col);
    transition: 0.3s;
}

#book {
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    display: none;
    justify-content: center;
    align-items: flex-end;
}

.book-warp {
    width: 100%;
    height: 550px;
    background: white;
    border-radius: 2rem 2rem 0 0;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.book-head,
.book-c {
    width: 100%;
    padding: 0 20px;
}

.book-head {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.book-head p {
    margin-bottom: 0;
}

.book-c {
    display: flex;
    margin-top: 30px;
    height: 400px;
    margin-bottom: 90px;
    overflow-y: scroll;
    overflow-x: hidden;
    justify-content: center;
}

.book-c label {
    margin-bottom: 0;
    color: #4e4e4e;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.book-input {
    width: 100%;
}

.b-group {
    display: flex;
    width: 100%;
    border: 1px solid rgb(233, 233, 233);
    padding: 10px 20px;
    flex-direction: column;
}

.b-group:nth-child(1) {
    border-radius: 1rem 1rem 0 0;
}

.b-group:nth-child(2) {
    transform: translateY(-1px);
}

.b-group:nth-child(3) {
    transform: translateY(-2px);

}

.b-group:nth-child(4) {
    transform: translateY(-3px);

}

.b-group:nth-child(5) {
    transform: translateY(-4px);
    border-radius: 0 0 1rem 1rem;

}

::-webkit-calendar-picker-indicator {
    filter: invert(42%) sepia(0%) saturate(2489%) hue-rotate(316deg) brightness(88%) contrast(84%);
}

.b-group input {
    outline: none;
    border: none;
    color: var(--gray);
}

.b-group input:valid {
    color: #1d1d1d;
}

.book-head span {
    text-transform: uppercase;
    font-size: 1.5rem;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(233, 233, 233);
    border-radius: 0.5rem;
}

.text-book {
    display: flex;
    flex-direction: column;
}

.buton {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guest {
    display: flex;
    height: 30px;
    align-items: center;
}

.guest label {
    margin-bottom: 0;
    width: 50px;
}

.buton button {
    width: 230px;
    height: 40px;
    color: white;
    background: var(--1col);
    border-radius: 0.3rem;
    outline: none;
    border: none;
    transition: 0.3s;
}

.buton button:hover {
    background: var(--1-2-col);
    transition: 0.3s;
}

.buton button:focus {
    outline: none;
}

.start-book {
    display: none;
}

.radio-ctrl label {
    margin-bottom: 0;
}

.b-group {
    font-size: 10px;
}

.hid-bot.active,
.hid-bot {
    display: none;
}

.under-hid-nav {
    display: none;
}

/* ------------------------1335------------------------ */
@media screen and (max-width:1335px) {


    .cards-img {
        max-height: 330px;
    }

    .cards-img img {
        max-height: 330px;
    }

    .cards {
        width: 510px;
    }
}

/* ------------------------1200------------------------ */
@media screen and (max-width:1200px) {
    .booking {
        width: 1100px;
    }

    .group-book {
        width: 270px;
    }

    .who .book-s {
        width: 85px;
    }
}

/* ------------------------1115------------------------ */
@media screen and (max-width:1115px) {
    .list-card {
        flex-direction: column;
    }

    .cards-img {
        max-height: 550px;
    }

    .cards-img img {
        max-height: 550px;
    }

    .cards {
        width: 100%;
    }

    .under-nav ul {
        display: none;
    }

    .under-nav .hamburger {
        display: block;
        color: var(--no-pure-white);
    }

    .search input {
        display: none;
    }

    .search i {
        transform: translateX(0);
        font-size: 1rem;
        color: var(--no-pure-white);
        background: var(--1col);
        padding: 12px;
        border-radius: 3rem;
    }

    .phone i {
        padding: 12px;
    }

    .phone i:hover~span {
        display: flex;
        opacity: 1;
        transition: 0.3s;
    }

    .txt {
        display: none;
    }

    .phone span {
        color: var(--black);
        position: absolute;
        display: none;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 40px;
        opacity: 0;
        transform: translateX(-80px);
        border-radius: 3rem;
        margin-top: 100px;
        background: white;
        transition: 0.3s;
    }

    .card-ribbon .ribbon {
        width: 90%;
    }

    .booking-content {
        top: 440px;
    }

    .booking {
        width: 700px;
        height: 310px;
        overflow: hidden;
        justify-content: space-between;
        padding-top: 15px;
    }

    .bk-c {
        flex-wrap: wrap;
    }

    .group-book {
        width: 50%;
        height: 130px;
    }

    .book-b {
        height: 75px;
        margin: 0;
        font-size: 10px;
    }

    .book-h h6 {
        font-size: 0.8rem;
    }

    .radio-ctrl {
        width: 30%;
    }

    .radio-ctrl label {
        font-size: 10px;
    }

    .who .book-s {
        width: 111px;
    }

    .under-hid-nav {
        position: absolute;
        display: none;
        width: 100%;
        height: auto;
        z-index: 2;
        top: 140px;
    }

    .under-hid-nav ul {
        margin-bottom: 0;
        width: 100%;
        background: var(--gray);
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 20px;
    }

    .under-hid-nav ul li {
        list-style: none;
        width: 170px;
        height: 45px;
        display: flex;
        justify-content: center;
    }

    .under-hid-nav ul li a {
        color: white;
    }

    .under-hid-nav ul li a.active {
        color: var(--black);
    }

    .under-hid-nav ul li a:hover {
        color: var(--black);
    }

    .under-hid-nav.active {
        display: flex;
        animation: underAppear 1s ease both;
    }

    .under-hid-nav.deactive {
        animation: underDis 1s ease both;
    }

    @keyframes underAppear {
        0% {
            top: -50px;
        }

        100% {
            top: 140px;
        }
    }

    @keyframes underDis {
        0% {
            top: 140px;
        }

        100% {
            top: -50px;
        }
    }
}

/* ------------------------850------------------------ */
@media screen and (max-width:850px) {
    .bottom-item {
        display: none;
    }

    .bottom-nav .hamburger {
        color: var(--black);
        display: block;
    }

    .foot-c {
        justify-content: space-between;
        flex-wrap: wrap;
        overflow-y: scroll;
        overflow-x: hidden;
        padding-bottom: 20px;
    }

    .foot-part {
        width: 280px;
    }

    .bottom-nav {
        flex-direction: row-reverse;
        overflow: hidden;
    }

    .hid-bot {
        display: none;
        flex-direction: column;
        width: 200px;
        background: white;
        position: absolute;
        left: 0;
        transform: translateY(-90px);
        border-radius: 0 3rem 3rem 0;
        z-index: 1;
        box-shadow: 5px 5px 10px var(--trans-black);
    }

    .hid-bot a {
        height: 35px;
        color: var(--soft-black);
        padding: 10px;
        margin-bottom: 5px;
    }

    .hid-bot a:hover {
        color: var(--black);
    }

    .hid-bot.active {
        display: flex;
        animation: sidepear 1s ease both;
    }

    .hid-bot.deactive {
        animation: sidedis 1s ease both;
    }


    @keyframes sidepear {
        0% {
            left: -300px;
        }

        100% {
            left: 0;
        }
    }

    @keyframes sidedis {
        0% {
            left: 0;
        }

        100% {
            left: -300px;
        }
    }

}

/* ------------------------700------------------------ */
@media screen and (max-width:700px) {
    .booking-content {
        top: 380px;
    }

    .booking-form {
        display: none;
    }

    #book.active {
        display: flex;
    }

    .start-book {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
        height: 40px;
        cursor: pointer;
        background: transparent;
        border: 1px white solid;
        color: white;
        border-radius: 0;
        transform: translateY(0px);
        transition: 0.3s;
    }

    .start-book:hover {
        background: var(--1col);
        border-radius: 3rem;
        transform: translateY(-5px);
        transition: 0.3s;
        border: none;
    }

    .radio-main {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
}

/* ------------------------510------------------------ */
@media screen and (max-width:510px) {
    .top-navbars img {
        max-width: 150px;
    }

    .top-navbars {
        padding: 0;
    }

    .nav-item>div {
        margin: 0 5px;
    }

    .search i,
    .phone i {
        padding: 10px;
    }

    .cards {
        height: 345px;
    }

    .txt-desc {
        height: 150px;
    }

    .card-ribbon .ribbon {
        width: 82%;
    }

    .top-more {
        width: 85px;
    }

    .foot-c {
        padding-bottom: 20px;
    }
}