/* GENERAL */

body {
    font-family: 'Noto Sans', sans-serif;
}

p {
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

/* main header */

/* logo size on large screens */
@media screen and (min-width:769px) {
    .mdg-logo img{
        max-width: 200px;
    }
}

/* logo size on handheld-devices */
@media screen and (max-width:769px) {
    .mdg-logo img{
        max-width: 170px;
    }
}

.mdg-navbar {
    background: #1e22a9;
    padding: 5px 0 2px 0;
}

.mdg-search .form-inline .input-group {
    width: 100%;
}

.mdg-search .form-control {
    border-radius: 30px;
}

a.mdg-btn-search {
    background: #006de1;
    color: #ffffff;
    border-radius: 30px;
}

a.mdg-btn-search:hover {
    background: #f68b1e;
    color: #ffffff;
}

.ls-cta {
    padding-top: 4px;
}

.header-cta {
    color: #ffffff;
    padding: 5px 10px 0;

}

.cta-icon>.fa-3x {
    font-size: 1.5em;
}

.cta-text {
    padding-left: 5px;
    color: #ffffff;
    text-align: right;
}

.cta-text a {
    color: #ffffff;
}

.dropdown-item {
    padding: 5px;
    white-space: normal !important;
}

/* categories menu */
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}
.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
    margin-top: 0;
}

.ddcat {
    width: 250px;
    font-size: .9rem;
}

.ddscat {
    min-width: 800px;
    padding: 5px 20px;
    min-height: 200px;
}

.ddsc-c {
    min-height: 100px;
    padding-bottom: 10px;
}

.mmsc a {
    color: #212529;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.mmtlc ul {
    list-style-type: none;
    padding: 0;
}

.mmtlc a {
    color: #212529;
    text-decoration: none;
    font-size: .75rem;
}

.mmtlc a:hover {
    font-weight: 700;
}

/* primary menu */
.mdg-cm {
    border-bottom: 4px solid #006de1;
    background: #ffffff;
}

.mdg-cm .navbar {
    padding: 0;
}

a.nav-link {
    text-transform: capitalize;
    color: #212529;
}

a.nav-link.active {
    color: #ffffff;
    background: #006de1;
}

a.nav-link.active:hover {
    color: #ffffff;
}

a.nav-link:hover {
    color: #f68b1e;
}

.dropdown-menu {
    border-radius: 0;
    margin-top: -1px;
}

/* dropdown on hover */
.dropdown-item:hover {
    background: #f68b1e;
    color: #ffffff;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

/* mobile menu customisations */
.mdg-navbar-hh {
    background: #1e22a9;
}

.hh-fix-search {
    background: #f5f8f9;
    padding: 5px 10px;
    border-bottom: 3px solid #1e22a9;
}

.hh-search .form-inline .input-group {
    width: 100%;
}

.hh-cta {
    margin: 0 15px;
}

/* toggle navigation */

.mobile-toggle {
    display: inline-block;
    cursor: pointer;
}
  
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
}
  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/* menu slide from left */

@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 54px;
        left: 0;
        padding: 15px;
        width: 100%;
        background: #f8f8f8;
        z-index: 1000;
        margin-top: 14px;
        border-bottom: 10px solid #f68b1e;
    }
    .navbar-collapse.collapsing {
        height: auto;
        -webkit-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        -moz-transition: left 0.3s ease;
        transition: left 0.3s ease;
        left: -100%;
    }
    .navbar-collapse.show {
        left: 0;
        -webkit-transition: left 0.3s ease-in;
        -o-transition: left 0.3s ease-in;
        -moz-transition: left 0.3s ease-in;
        transition: left 0.3s ease-in;
    }
}

/* display handheld menu*/
@media screen and (min-width:920px) {
    .hh-menu {
        display: none;
    }
}

/* hide main menu on handheld-devices */
@media screen and (max-width:920px) {
    .ls-menu {
        display: none;
    }
}

/* hide chat button on very small screens */
@media screen and (max-width:290px) {
    .hh-chat {
        display: none;
    }
}

/* new mobile menu */

.chh-grid {
    overflow: hidden;
}

.mdg-chh img{
    width: 100%;

    height: 50px;

    padding-bottom: 10px;

    object-fit: contain;
    object-position: 50% 50%;
}

.mdg-chh {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 8px;
    margin: 5px;

    text-align: center;

    box-shadow: 1px 1px 5px #dddddd;
}

/* listing on tablets */
@media screen and (max-width: 780px) {
    .mdg-chh {
        max-width: 15.3%;
        float: left;
    }
}

/* listing on mobile phones */
@media screen and (max-width: 480px) {
    .mdg-chh {
        max-width: 29.5%;
        float: left;
    }
}

span.cat-name {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 46px;
    margin: 0 auto;
    line-height: inherit;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.mdg-chh a {
    color: #333333;
}

/* PAGE CONTENT */

/* space at the top of a bage without breadcrumbs on large screens */
@media screen and (min-width: 780px) {
    .mdg-top {
        margin-top: 107px;
    }
}

/* space at the top of a bage without breadcrumbs on hand held */
@media screen and (max-width: 780px) {
    .mdg-top {
        margin-top: 134px;
    }
}
/* breadcrumbs */
.bc-bg {
    background: #dddddd;
    color: #333333;
    padding: 5px 0;
    overflow: auto;
    white-space:nowrap;
}

@media only screen and (min-width: 600px) {
    .bc-bg {
        margin-top: 93px;
    }
}

@media only screen and (max-width: 600px) {
    .bc-bg {
        margin-top: 135px;
    }
}


span.bc-sep::before {
    content: ">";
    padding: 0 4px;
}

.bc-link a {
    color: #006de1;
}

.bc-link a:hover {
    text-decoration: none;
    color: #333333;
}

.bc-link span:last-child {
    font-weight: 700;
}

/* HOMEPAGE */
/* hero */
.home-hero-bg {
    background: #e4f4ff;
    border-radius: 40px;
}

.home-hero {
    width: 100%;
    background-image: url("../img/extra/gradient.png");
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.home-hero2 {
    width: 100%;
    background-image: url("../img/extra/gradient.png");
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    border-radius: 0 0 100px 100px;
    margin-bottom: 50px;
}

.home-hero-text-wrapper {
    padding: 20px;
}

@media screen and (min-width: 930px) {

    .home-hero-text-wrapper {
        margin: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.hero-text h3 {
    font-weight: 700;
    font-size: 40px;
}

.hero-text {
    padding: 20px;
    text-align: center;
}

.typewrite {
    color: #f68b1e;
}

.download-app img {
    width: 163px;
}

.hero-banner img {
    width: 100%;
    padding: 0 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    text-align: center;
    margin-bottom: 20px;
}

.hero-title h2 {
    font-size: 40px;
}

.hero-title-alt {
    color: #ffffff;
    text-align: center;
}

/*investors */
.investors {
    text-align: center;
    padding-top: 50px;
}

.investors img {
    width: 80%;
}

/*inthenews */
.inthenews {
    text-align: center;
    padding: 10px 0 10px 0;
}

.inthenews img {
    width: 20%;
    margin: auto;
}

/* floating */
.floating-sec {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.mm-compare {
    margin-top: 40px;
}

.snbl {
    background: #25d366;
    color: #ffffff;
    border-radius: 30px;
    padding: 30px;
    margin: 10px;
}

.bnpl {
    background: red;
    color: #ffffff;
    border-radius: 30px;
    padding: 30px;
    margin: 10px;
}

/* features */
.bg-gray-features {
    width: 100%;
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url("https://imageio.forbes.com/specials-images/dam/imageserve/1138257321/960x0.jpg");
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}
.h-features {
    margin: 40px 0 0;
}
.home-feature {
    text-align: center;
    padding: 10px 20px;
    margin: 5px;
    background: #e4f4ff;
    min-height: 250px;
    border-radius: 40px;
}

.home-feature .hfa {
    color: #007bff;;
    padding: 20px;
}

/* shop */
.w2shop img {
    width: 100%;
    height: 350px;
    border-radius: 30px;
    object-fit: cover;
    object-position: 50% 50%;
}

.w2shopimg, .w2shopimg2 {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    margin: 20px;
    height: 400px;
}

.w2shopimg img {
    transform: rotate(10deg);
}

.w2shopimg2 img {
    transform: rotate(-10deg);
}

.w2shoptext {
    padding: 0 30px;
    text-align: center;
}

.w2partners {
    padding-top: 50px;
    text-align: center;
}

.w2partners img {
    width: 80%;
}

/* sotm */
.sotm {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

/* testimonials */
.accordion {
    color: #212529;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;

    font-size: 20px;
    font-family: 'Roobert TWHINT', sans-serif;
    font-weight: 700;
}

.ac-b {
    border-bottom: 5px solid #212529;
    background-color: transparent;
}

.active, .accordion:hover {
    background-color: transparent;
}

.accordion:after {
    content: '\002B';
    color: #212529;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 20px 20px;
}

/* how to */
.h-howto img {
    width: 100%;
}

.h-howto-txt {
    padding: 20px;
}

.fg {
    color: #52b44b;
}

/* jenga summarry */
.jenga-hero {
    background: #f5f8f9;
    border-radius: 40px;
}
.main-hero-text {
    padding: 50px 0;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.bg-gray-img {
    width: 100%;
    background-image: url("../img/extra/jenga-bg.jpg");
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.jenga-sum {
    padding: 50px 0;
    background: #1e22a9;
    border: 10px solid #007bff;
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

/* testimonials */
.h-testimonial {
    background: #dddddd;
    padding: 10px 20px;
    min-height: 180px;
}

/* new categories */
.hc-grid {
    overflow: hidden;
}

.mos-hc {
    border: 1px solid #dddddd;
    background: #f5f8f9;
    padding: 10px;
    margin: 10px 5px;
}

.mos-hc img{
    width: 100%;

    height: 100px;

    padding-bottom: 10px;

    object-fit: contain;
    object-position: 50% 50%;
}

.mos-hc a {
    color: #212529;
}

/* listing on larger screens */
@media screen and (min-width: 1030px) {
    .mos-hc {
        width: 32.4%;
        float: left;
    }
}

/* listing on large screens */
@media screen and (max-width: 1030px) {
    .mos-hc {
        width: 48.8%;
        float: left;
    }
}

/* listing on tablets */
@media screen and (max-width: 780px) {
    .mos-hc {
        width: 48.4%;
        float: left;
    }
}

/* listing on mobile phones */
@media screen and (max-width: 480px) {
    .mos-hc {
        width: 97%;
        float: left;
    }
}

.hc-name {
    font-weight: 700;
}

.hc-all a::after {
    content: "\27F6";
    padding-left: 5px;
}

.hc-all a {
    color: #f68b1e;
    font-size: 13px;
}

.hc-list ul {
    padding: 10px;
    list-style-type: none;
    font-size: 13px;
    margin-bottom: 0;
}

.hc-list a {
    color: #212529;
}

.hc-list li:before {
    content: ">";
    display: block;
    float: left;
    width: 1.2em;
}

/* end new categories */

/* categories */
.c-grid {
    overflow: hidden;
}

.mdg-c img{
    width: 100%;

    height: 100px;

    padding-bottom: 10px;

    object-fit: contain;
    object-position: 50% 50%;
}

.mdg-c {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 8px;
    margin: 5px;

    text-align: center;

    box-shadow: 1px 1px 5px #dddddd;
}

/* listing on larger screens */
@media screen and (min-width: 1030px) {
    .mdg-c {
        max-width: 11.6%;
        float: left;
    }
}

/* listing on large screens */
@media screen and (max-width: 1030px) {
    .mdg-c {
        max-width: 15.5%;
        float: left;
    }
}

/* listing on tablets */
@media screen and (max-width: 780px) {
    .mdg-c {
        max-width: 23%;
        float: left;
    }
}

/* listing on mobile phones */
@media screen and (max-width: 480px) {
    .mdg-c {
        max-width: 46%;
        float: left;
    }
}

span.cat-name {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 46px;
    margin: 0 auto;
    line-height: inherit;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.mdg-c a {
    color: #333333;
}

#brands-carousel {
    padding: 10px;
}

.mdg-b img{
    width: 100%;

    object-fit: contain;
    object-position: 50% 50%;

    padding: 10px;

    border: 1px solid #dddddd;
    background: #ffffff;
}

.mdg-b {
    padding: 5px;
}

/* product carousel */
.ht {
    border-bottom: 2px solid #dddddd;
}

.ht h5 {
    text-transform: uppercase;
}
.p-c-sec {
    padding: 0 5px;
    margin-bottom: 10px;
}

.p-c-inner {
    background: #ffffff;
    padding: 20px;
}

.p-c-sec a:hover {
    text-decoration: none;
}

.p-c-sec img {
    width: 100%;
    height: 100px;

    padding-bottom: 10px;

    object-fit: contain;
    object-position: 50% 50%;
}

.p-c-name {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 46px;
    margin: 0 auto;
    line-height: inherit;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.p-c-name {
    color: #333333;
}

.p-c-price {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    padding-bottom: 5px;
}

.slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* main-content */
.bg-gray {
    background: #f5f8f9;
    padding: 50px 0;
}

.bg-gray-curve {
    background: #e4f4ff;
    border-radius: 100px 100px 0 0;
    padding: 50px 0;
    width: 100%;
    background-image: url(https://global-uploads.webflow.com/6085915…/60a2e67…_Home%20Blurred%20Bubble.svg), url(https://global-uploads.webflow.com/6085915…/60a2e3f…_Home%20Before%20After%20OL.svg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.bg-gray-alt {
    background: #f5f8f9;
    padding: 50px 0;
}

.bg-white {
    background: #ffffff;
    padding: 50px 0;
}

.bg-white-alt {
    background: #ffffff;
    padding-top: 50px;
}

.bg-white-jenga {
    background: #ffffff;
    padding: 100px 0;
}

/* category page */
.lmm-p-listing-page {
    overflow: hidden;
}

.ht-title h5 {
    text-transform: capitalize;
}

.filters {
    overflow: hidden;
}

.p-count {
    max-width: 50%;
    float: left;
}

.p-filter {
    max-width: 100%;
}

.p-filter-btn {
    max-width: 50%;
    float: right;
}

.p-sort {
    max-width: 50%;
    float: right;
}

@media only screen and (max-width: 780px) {
    .p-sort {
        display: none;
    }
}

.p-grid {
    overflow: hidden;
}

/* category page settings */
@media only screen and (min-width: 768px) {
    .lmm-sb-sec {
        width: 20%;
        float: left;
    }
    
    .lmm-p-listing-sec {
        padding-left: 15px;
        width: 80%;
        float: left;
    }
}

@media (max-width:768px) and (min-width: 600px) {
    .lmm-sb-sec {
        display: none;
    }
    
    .lmm-p-listing-sec {
        width: 100%;
        float: left;
    }
}

@media only screen and (max-width: 600px) {
    .lmm-sb-sec {
        display: none;
    }
    
    .lmm-p-listing-sec {
        width: 100%;
        float: left;
    }
}

/* sidebar */
.lmm-sidebar {
    background: #ffffff;
}

.lmm-sb-sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 107px;
}

/* hide sidebar on mobile phones */
@media screen and (max-width: 480px) {
    .lmmsb-hide-sm {
       display: none;
    }
}

.lmmsb-sec {
    padding: 10px;
    border-bottom: 5px solid #1e22a9;
}

.lmmsb-sec a {
    color: #212529;
}

.lmmsbt h5 {
    text-transform: uppercase;
}

.lmmsbt span {
    color: #1e22a9;
}

.lmmsb-sec-scr {
    max-height: 100px;
    overflow: auto;
}

/* scrollbar */
/* Works on Firefox */
.lmmsb-sec-scr {
    scrollbar-width: thin;
    scrollbar-color: #f68b1e #ffffff;
}
  
/* Works on Chrome, Edge, and Safari */
.lmmsb-sec-scr::-webkit-scrollbar {
    width: 12px;
}
  
.lmmsb-sec-scr::-webkit-scrollbar-track {
    background: #ffffff;
}
  
.lmmsb-sec-scr::-webkit-scrollbar-thumb {
    background-color: #f68b1e;
    border-radius: 20px;
    border: 3px solid #ffffff;
}

/* handheld filter */
.lmm-filter-toggle {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;

    background: #ffffff;
    border-top: 3px solid #f68b1e;
}

@media screen and (min-width: 780px) {
    .lmm-filter-toggle {
        display: none;
    }
}

.hh-ft-sort {
    background: #007bff;
    color: #ffffff;
    padding: 16px 10px 0;
    float: left;
    width: 50%;
}

.hh-ft-filter {
    background: #1e22a9;
    color: #ffffff;
    padding: 16px 10px 0;
    float: left;
    width: 50%;
}

/* listing on large screens */
@media screen and (min-width: 780px) {
    .p-cat {
        width: 25%;
        float: left;
    }
}

/* listing on tablets */
@media screen and (max-width: 780px) {
    .p-cat {
        max-width: 33.3%;
        float: left;
    }
}

/* listing on mobile phones */
@media screen and (max-width: 480px) {
    .p-cat {
        max-width: 50%;
        float: left;
    }
}

/* product page */
.info-sec {
    margin-bottom: 30px;
}
.p-img img {
    object-fit: contain;
    object-position: 50% 50%;
}

.carousel-control-next-icon {
    background-color: #333333;
    border-radius: 50px;
}

.carousel-control-prev-icon {
    background-color: #333333;
    border-radius: 50px;
}

.booking-sec {
    padding: 20px;
}

.booking-sec img {
    width: 100px;
    padding: 8px;
    border: 2px solid #dddddd;
    background: #ffffff;
    margin-bottom: 5px;
}

.product-name {
    text-transform: capitalize;
}

.p-code {
    font-weight: 600;
}

.product-price {
    color: #006d5b;
    font-size: 25px;
    padding-bottom: 10px;
    font-weight: 600;
}

.mdg-features {
    background: #333;
    color: #ffffff;
    padding: 20px;
    margin: 0;
    border-bottom: 5px solid #f68b1e;
}

.mdgf {
    padding: 10px 0;
}

.mdgf-icon>.fa-3x {
    font-size: 2.3em;
}

.mdgf-text {
    padding-left: 20px;
}

.highlights {
    padding: 10px 0;
}

/* product description */
.nav-tabs .nav-link {
    border: none;
}

.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-bottom: 4px solid #1e22a9;
}

/* scrollabe tabs */
.tabbable .nav-tabs {
    overflow-x: auto;
    overflow-y:hidden;
    flex-wrap: nowrap;
}

.tabbable .nav-tabs .nav-link {
   white-space: nowrap;
}

.p-desc img {
    width: 100%;
}

/* checkout */
.card {
    border-radius: 0;
}

.checkout a {
    color: #1e22a9;
}

/* FOOTER */
span.truly-african {
    background-image: url("../img/extra/truly-african.png");
    padding: 0 100% 0 0;
}

.ftr-bg {
    background: #333333;
    padding: 40px 0;
}

.ftr-container {
    margin: auto;
    max-width: 500px;
}

.ftr-content {
    color: #ffffff;
}

.ftr-socials {
    text-align: center;
}

.ftr-socials a .fa {
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    vertical-align: middle;
    padding: 10px;
    margin: 10px;
}

.fa-facebook {
    background: #4267b2;
}

.fa-instagram {
    background: #e1306c;
}

.ftr-socials a .fa:hover {
    background: #007bff;
}

.ftr-search {
    text-align: center;
}

.lmm-app img {
    max-width: 150px;
}

.ftr-search .form-inline .input-group {
    width: 100%;
}

.ftr-legal {
    padding-top: 15px;
    text-align: center;
}

.ftr-sep::before {
    content: "/";
    padding: 0 4px;
}

.ftr-legal a {
    color: #212529;
}


/* copyrights */
.copyrights {
    text-align: center;
    background: #1e22a9;
    color: #ffffff;
    padding: 10px 0;
}

.copyrights a {
    color: #f8f8f8;
}

/* FORMS */
.form-control {
    border-radius: 10px;
}

/* BUTTONS */
a {
    outline-style: none;
}

.p-btn {
    background: #006de1;
    color: #ffffff;
    border-radius: 10px;
}

.btn-outline-primary {
    border-radius: 10px;
}

.p-btn:hover {
    background: #f68b1e;
    color: #ffffff;
    animation: none;
}

.p-btn-inv {
    background: #f68b1e;
    color: #ffffff;
    border-radius: 10px;
}

.p-btn-inv:hover {
    background: #006de1;
    color: #ffffff;
    animation: none;
}

.p-btn-sec {
    background: #6c757d;
    color: #ffffff;
    border-radius: 10px;
}

.mbtn {
    margin: 5px 0;
}

.p-btn-wa {
    background: #25d366;
    color: #ffffff;
    border-radius: 10px;

    box-shadow: 0 0 0 0 rgba(37,211,102, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37,211,102, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(37,211,102, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37,211,102, 0);
	}
}

.p-btn-wa:hover {
    background: #25d366;
    color: #ffffff;
    border-radius: 10px;
}

/* BOOTSTRAP */
table.table.table-borderless.table-sm {
    width: 100% !important;
}

/* columns */
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}

.col-form-label {
    font-size: 13px;
}

/* TRAVEL */
.t-grid {
    overflow: hidden;
}

.t-c-sec {
    padding: 0 5px;
    margin-bottom: 10px;
}

.t-c-inner {
    background: #ffffff;
    padding: 20px;
}

.t-c-sec a:hover {
    text-decoration: none;
}

.t-c-sec img {
    width: 100%;
    height: 150px;

    padding-bottom: 10px;

    object-fit: cover;
    object-position: 50% 50%;
}

.t-c-name {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 46px;
    margin: 0 auto;
    line-height: inherit;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

.t-c-name {
    color: #333333;
}

.t-c-pricing {
    padding-top: 10px;
}

.t-c-label {
    color: #333333;
}

.t-c-price {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    padding-bottom: 5px;
}

/* listing on large screens */
@media screen and (min-width: 780px) {
    .t-cat {
        width: 33.3%;
        float: left;
    }
}

/* listing on tablets */
@media screen and (max-width: 780px) {
    .t-cat {
        max-width: 50%;
        float: left;
    }
}

/* listing on mobile phones */
@media screen and (max-width: 480px) {
    .t-cat {
        max-width: 100%;
        float: left;
    }
}