@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Red+Rose:wght@300..700&family=Roboto+Slab:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    overflow-x:hidden;
}

/* NAVBAR */
h1, h2, h3, h4, h5{
    font-family:"Red Rose", serif;
}
.navbar{
    padding:0px 0;
}
.navbar .container {
    max-width: 1400px;
}
.navbar-nav .nav-link{
        font-weight: 500;
    margin: 0 10px;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Submenu */


.dropdown-submenu .dropdown-menu{
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu{
  display: block;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding-top: 0;
}
.drpdn-title{
    font-size: 15px;
    font-family: 'Roboto Slab';
    font-weight: 500;
    padding: 13px 13px 20px;
    border-bottom: 1px solid #efefef;
    background: #fff;
    color: #343434;
    display: flex;
    align-items: center;
    gap: 10px;
}
.drpdn-title i{
        background: #e58089;
    padding: 8px;
    width: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}
h3.menu-title{
    font-weight: 400;
    font-size: 16px;
    margin:0;
}
.menu-subtitle{
        margin: 0;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
}
.bhgbhg .dropdown-toggle::after{
    display: none;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover {
    background-color: #e58089;
    color: #fff;
}
.dropdown-item {
   font-size: 12px;
    padding: 13px 10px;
    border-bottom: 1px solid #d3d0d0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    color:#4e4e4e;
}
.main-sc{
        display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 15px;
    padding: 5px 10px;
    box-shadow: 0 0 6px #d7d7d7;
    margin: auto;
    margin-top: 20px;
    max-width: 850px;
}
.inpt-sc{
    display: flex;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding:10px;
}
.inpt-sc i{
   width: 45px;
    aspect-ratio: 1;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.blue{
        background: #fff;
    color: #2f80ed;
    box-shadow: inset 0 0 10px #2f80ed;
}

.green{
    background:#fff;
    color:#27ae60;
    box-shadow: inset 0 0 10px #27ae60;
}

.inpt-sc i.purple{
    background:#fff;
    color:#8e44ad;
    box-shadow: inset 0 0 10px #8e44ad;
    width: 53px;
}

.orange{
    background:#fff;
    color:#f2994a;
    box-shadow: inset 0 0 10px #f2994a;
}

.inpt-sc h4{
    margin:0;
    font-size:15px;
    font-weight:400;
    color:#1b1b1b;
}

.inpt-sc p{
    margin:0;
    font-size:12px;
    color:#6c757d;
}
.bhgbhg ul{
    padding:0 0px 10px;
    /*max-height: 80dvh;*/
    /*overflow-y: scroll;*/
}
/* Full Scrollbar */
.bhgbhg ul::-webkit-scrollbar{
  width: 3px;
}

/* Track */
.bhgbhg ul::-webkit-scrollbar-track{
  background: #f1f1f1;
}

/* Handle */
.bhgbhg ul::-webkit-scrollbar-thumb{
  background: #e58089;
  border-radius: 10px;
}
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    box-shadow: 0 0 0px 2px #e58089;
    min-width:200px;
}
/* Hover */
.bhgbhg ul::-webkit-scrollbar-thumb:hover{
  background: #444;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding-top: 0;
    border-radius: 0;
     min-width:200px;
}
.count-item{
    width: 24px;
    display: inline-flex;
    height: 24px;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #343434;
    border-radius: 50%;
    border: 1px solid #343434;
}
.dropdown-item.active .count-item, .dropdown-item:active .count-item, .dropdown-item:hover .count-item {
    background: #fdf5f5;
    color: #e58089;
    border: 1px solid #ffffff;
}
.navbar.fixed-nav{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background:#fff;
      z-index: 999;
      animation: smoothScroll 0.4s ease-in-out;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
.form-check-input:checked {
    background-color: #e58089;
    border-color: #e58089;
}

    @keyframes smoothScroll{
      from{
        transform: translateY(-100%);
      }
      to{
        transform: translateY(0);
      }
    }
/* Mobile Responsive */
@media(max-width:991px){

  .dropdown-submenu .dropdown-menu{
    left: 0;
    margin-left: 15px;
  }

}

.btn-black{
    background:#000;
    color:#fff;
    border: 1px solid #000;
    border-radius:0;
    font-size:12px;
    padding:8px 18px;
}
.btn.btn-black:hover{
    background: #fff;
    border: 1px solid #000;
}
.btn.btn-outline-dark.btn-sm{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius:0;
}
/* HERO */

.hero-section{
    position:relative;
    padding-top:40px;
    padding-bottom:40px;
}

.hero-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:500px;
    background:radial-gradient(circle,
    rgba(184,240,255,.9) 0%,
    rgba(184,240,255,.6) 40%,
    rgba(184,240,255,.2) 70%,
    transparent 100%);
    top:80px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

.improve{
    font-size: 68px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

.business{
    font-size: 120px;
    line-height: 120%;
    /* font-weight: 600; */
    letter-spacing: 2px;
    color: #000;
    text-align: center;
    font-family: "Red Rose", serif !important;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.efficiency{
    font-size: 68px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;
    margin: 0;
    font-family: 'Poppins' !important;
    padding: 0;
    text-align: center;
}

.review-text{
        font-size: 16px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

/* SEARCH */

.search-box{
    width:620px;
    margin:30px auto 0;
}

.search-wrap{
    border:3px solid #6ca0bf;
    border-radius:40px;
    /*overflow:hidden;*/
    background:#fff;
}

.search-wrap input{
    border:none;
    height:55px;
    border-radius: 30px !important;
}

.search-wrap input:focus{
    box-shadow:none;
}
.breadcrumb-item a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.search-btn{
    width:50px;
    background:#5e98bc;
    color:#fff;
    border:none;
    font-size:17px;
    border-radius: 0 30px 30px 0 !important;
}
.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}
.bghtd{
    margin: 30px 0;
    border: 1px solid #f2f2f2;
    box-shadow: 0 0 6px #bbb;
    padding: 25px;
    border-radius: 10px;
}
/* ABOUT */

.about-section{
    margin-top:45px;
}

.about-title{
    font-size:72px;
    font-weight:300;
    text-align:center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 4px #343434;
}
.top-s::before {
       content: "";
    position: absolute;
    width: 91%;
    height: 225px;
    background: radial-gradient(circle, rgb(184 240 255 / 32%) 0%, rgba(184, 240, 255, .6) 40%, rgba(184, 240, 255, .2) 70%, transparent 100%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.tppp{
    border: 1px solid #d5d3d3;
    padding: 0px 0px 4px;
    border-radius: 8px;
}
.tppp .form-check{
    padding: 8px 13px;
    font-size: 14px;
    height: 100%;
    border: 1px solid #cfcdcd;
}
.form-check-input[type=radio] {
    border-radius: 50%;
    padding: 0;
    border: 1px solid #343434;
    margin-left: 0;
}
.ttlte{
    font-size: 16px;
    padding: 15px 20px;
    border-bottom: 1px solid #d1d1d1;
    background: #e580893d;
    margin-bottom: 12px;
}
.about-text{
    text-align: center;
    /* max-width: 1150px; */
    margin: auto;
    line-height: 2;
    letter-spacing: 1px;
    color: #000000;
    font-size: 17px;
    font-weight: 500;
}

/* FEATURES */

.feature-box{
    text-align:center;
    margin-top:0px;
}
.feature-box img{
    height: 135px;
}
.feature-icon{
    font-size:80px;
    color:#000;
}

.feature-title{
    color: #e75262;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

@media(max-width:991px){

.improve{
    font-size:50px;
}

.business{
    font-size:65px;
}

.efficiency{
    font-size:50px;
}

.search-box{
    width:100%;
}

.about-title{
    font-size:50px;
}
}

/* WHY MESHINK */

.why-meshink{
    background:#f5f5f5;
    padding:70px 0;
}

.why-title{
    font-size:70px;
    color:#1d2740;
    font-weight:500;
    margin-bottom:25px;
    text-shadow: 3px 3px 4px #343434;
}

.why-card{
    text-align:center;
}

.why-card img{
    width:140px;
    height:140px;
    object-fit:contain;
    margin-bottom:20px;
}

.why-card p{
        font-size: 16px;
    line-height: 1.7;
    /* word-spacing: 2px; */
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
}

@media(max-width:991px){

    .why-title{
        font-size:50px;
    }

    .why-card{
        margin-bottom:30px;
    }

    .why-card img{
        width:120px;
        height:120px;
    }

    .why-card p{
        font-size:18px;
    }
}
.category-sec{
    background: linear-gradient(180deg, #d4ecfb, transparent);
}
/* AI SECTION */
.tbsdd{
    background: #fff;
}
.tbsdd .fade:not(.show) {
    display: none;
}
.tabsss{
    display: block;
    height: 443px;
    overflow-y: auto;
}
.tabsss li {
    width: 31.4%;
    float: left;
    margin: 7px;
    list-style-type: none;
    border: 3px solid #e58089;
}
.tabsss li img {
    width: 100%;
}
.tabsss ul{
    padding: 0;
    margin: 0;
}
.ai-section{
    background:url(../../images/images/ai_background.png) no-repeat;
    padding:40px 0;
    overflow:hidden;
    background-position: top left;
}

.ai-image{
    position:relative;
    height:100%;
}

.ai-image::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border:4px solid rgba(180,255,255,.5);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.ai-image img{
    width:100%;
    max-width:520px;
    display:block;
}

/* CONTENT */

.ai-content{
    padding:20px 0px 20px 0;
}

.ai-title{
    font-size:58px;
    font-weight:300;
    line-height:1.05;
    text-align:right;
    color:#000;
    letter-spacing:2px;
    margin-bottom:35px;
    text-shadow: 3px 3px 4px #343434;
}

/* CARDS */

.ai-card{
    background:#fff;
    border:2px solid #ef8c96;
    border-radius:14px;
    padding:18px;
    height:100%;
    text-align:center;
}

.ai-card h5{
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin: 0;
    padding-bottom: 15px;
    text-align: center;
}

.ai-card p{
        font-size: 17px;
    line-height: 26px;
    /* text-align: justify; */
    margin-bottom: 0;
    letter-spacing: 1px;
    text-align: center;
}

/* RESPONSIVE */

@media(max-width:991px){

    .ai-title{
        font-size:40px;
        margin-top:20px;
    }

    .ai-content{
        padding:20px;
    }

    .ai-image img{
        max-width:100%;
    }

}

/* Custom styles to match the image look */
.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.list-group{
    border-right: 1px solid #c3c3c3;
}
.list-group-item {
    font-weight: bold;
    border: 2px solid #fff;
    padding: 1rem;
}

.list-group-item.active {
    background-color: #fff;
    color: #000;
    border: 2px solid #e58089; /* Highlight active category */
}

.card {
    border-width: 2px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05); /* Added slight interactivity */
}


.review-section h1 {
    letter-spacing: 2px;
}

/* Phone Mockup */
.phone-wrapper {
    position: relative;
    margin: 0 auto;
}
.stars {
    font-size:30px;
}
.phone-frame {
    width: 250px;
    height: 500px;
    background: #333;
    border-radius: 40px;
    padding: 10px;
    border: 4px solid #1a1a1a;
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #3a86ff, #00b4d8);
    border-radius: 30px;
}

/* Review Bubbles */
.review-section{
    background: linear-gradient(0deg, hsl(204deg 65.79% 87.1%) 3%, transparent 43%);
}
.review-bubble {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    width: 150px;
    animation: float 4s ease-in-out infinite;
}
.content-box p{
    font-size: 17px;
    line-height: 250%;
    letter-spacing: 1px;
    color: #000;
}
.review-bubble img {
    border-radius: 50%;
    width: 35px;
}

.bubble-content .line {
    height: 4px;
    width: 60px;
    background: #eee;
    border-radius: 2px;
    margin-top: 5px;
}

/* Positioning Bubbles */
.bubble-1 { top: 10%; right: -70px; animation-delay: 0s; }
.bubble-2 { top: 44%; right: -70px; animation-delay: 2s; }
.bubble-3 { bottom: 10%; right: -70px; animation-delay: 1s; }
.bubble-4 { bottom: 30%; left: -70px; animation-delay: 3s; }
.bubble-5 { top: 25%; left: -70px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Button Styling */
.btn-outline-danger {
    border-color: #ff4d6d;
    color: #000;
    font-weight: 600;
}

.btn-outline-danger:hover {
    background-color: #ff4d6d;
    border-color: #ff4d6d;
}

.custom-card {
            border: 2px solid #e35d6a;
            border-radius: 25px;
            height: 100%;
            transition: transform 0.3s ease;
            padding: 20px 10px;
        }

        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .icon-box {
            font-size: 3rem;
            color: #333;
            margin-bottom: 1.5rem;
        }
        .icon-box img{
            height: 105px;
            width: 100%;
            object-fit: contain;
        }
        .card-title {
            font-weight: 400;
            margin: 15px 0 8px 0;
            color: #333;
            font-size: 22px;
            line-height: 120%;
            font-family: 'Poppins';
        }

        .card-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

.count {
            background-color: #0b1426; /* Dark navy background from image */
            color: #ffffff;
        }

        .stats-section {
            padding: 20px 0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-style: italic;
            font-weight: 300;
            margin-bottom: 5px;
            font-family: 'Font Awesome 5 Free';
        }

        .stat-text {
           font-size: 19px;
            line-height: 110%;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            letter-spacing: .5px;
            margin-top: 10px;
            word-spacing: 2px;
        }

        .global-presence {
  margin: 0;
    padding-top: 70px;
    padding-bottom: 130px;
    background: linear-gradient(180deg, rgba(86, 161, 204, 1) 0%, rgba(191, 221, 242, 1) 0%, #fdfdfd8c 60%), url(../../images/images/global_bg.png) top / cover no-repeat !important;
}
.arrows {
    height: fit-content;
    background: #3434344f;
    color: inherit;
    border: none;
    padding: 7px 9px;
    font: inherit;
    border-radius: 50px;
    line-height: normal;
}
.presenceSlider {
    align-items: center;
}
.flag-card {
  display: inline-block;
  padding: 0 15px;
  transition: transform 0.3s;
}
.flag-card p{
    margin-bottom: 0;
}
.focus-section h2.main-title{
    font-size: 100px;
    margin: 0;
    line-height: 114%;
    padding: 0px 0 20px;
    font-family: "Red Rose", serif !important;
    color: #000;
    text-shadow: 4px 4px 0px #cdc9c2;
    font-weight: 100;
}
.flag-card img{
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.flag-icon img{
    width:100%;
}
.flag-icon {
  width: 100px; /* Adjust size as per image */
  height: 60px;
  display: block;
  border: 1px solid #ddd;
}

/* Make multiple items visible in one carousel slide if needed */
@media (min-width: 768px) {
  .carousel-inner {
    display: flex;
    overflow: hidden;
  }
}
.focus-section {
            padding: 40px 0;
        }

        /* Left Side Title Styling */
        .main-title {
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: 2px;
            color: var(--text-color);
            text-transform: uppercase;
        }

        /* Grid Item Styling */
        .focus-item {
            text-align: center;
            margin-bottom: 40px;
            transition: transform 0.3s ease;
        }

        .focus-item:hover {
            transform: translateY(-5px);
        }

        .focus-item img {
            max-width: 180px;
            height: auto;
            margin-bottom: 0px;
        }

        .focus-item p {
            font-weight: 600;
            margin-top: 10px;
            font-size: 18px;
            color: #333;
        }



        .team-section {
    background: url(../../images/images/team_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}

.section-title {
    font-family: "Dancing Script", cursive;
    text-shadow: 4px 4px 0px #cdc9c2;
    text-align: center;
    padding: 0 0 50px;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
    word-spacing: 4px;
    font-weight: 300 !important;
    font-size: 72px;
    line-height: 110%;
}
.map_section {
    width: 100%;
    height: 285px;
    margin: 0 auto;
    text-align: center;
}
.map_section iframe{
    width: 100%;
    height:100%;
}
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.img-container {
    border: 1px solid #ddd;
    border-radius: 20px; /* Large rounded corners */
    overflow: hidden;
    background: #fff;
    /*padding: 10px;*/
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.img-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    /* Optional: grayscale filter if you want that exact look */
    /* filter: grayscale(50%); */
}

.member-info h5 {
    font-weight: 400;
    font-size: 18px;
    font-family: 'Poppins';
}

.member-info p {
    font-size: 0.9rem;
    font-weight: 400;
}


.contact-section { padding: 60px 0; }
        
        .map-container {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .map-link {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 10;
            background: white;
            padding: 5px 10px;
            border: 1px solid #ccc;
            text-decoration: none;
            color: #333;
            font-size: 12px;
        }

        .form-container { padding-left: 30px; }
        
        .form-header {
            padding: 50px 0 20px;
    font-family: "Red Rose", serif !important;
    color: #000;
    text-shadow: 4px 4px 0px #cdc9c2;
    padding: 0 0 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    word-spacing: 4px;
    font-weight: 300 !important;
    font-size: 72px;
    line-height: 110%;
        }
        .form-control {
    padding: 0.8rem .75rem;
    border: none;
}
#queryForm .input-group, .form-control.border-start {
    border: 1px solid #e58089;
    background: #fff;
}

        .input-group-text {
            background-color: transparent;
            border-right: none;
            color: #666;
        }

        .form-control {
            border-left: none;
            border-color: #f0a3a3; /* Light pinkish border per image */
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #e91e63;
        }

        .captcha-box {
            background: #000;
            color: #fff;
            padding: 8px 15px;
            font-weight: bold;
            display: inline-block;
            letter-spacing: 2px;
        }

        .btn-send {
            background-color: #e97a7a;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 25px;
            text-transform: uppercase;
            margin-top: 20px;
        }

        .btn-send:hover { background-color: #d66868; }

        .text-pink { color: var(--brand-pink); }
.bg-pink { background-color: var(--brand-pink); }

.footer-section {
        background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../../images/images/footer_background.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom !important;
    background-color: transparent;
    padding: 8px 0 0;
    float: left;
    width: 100%;
    position: relative;
}
.footer-section .container{
    position: relative;
    max-width: 1400px;
}
.footer-section p{
    font-weight: normal;
    letter-spacing: 0.9px;
    font-size: 15px;
    color: #333;
}
.footer-section h6{
    color: #e58089 !important;
    font-size: 20px;
    margin-left: 0 !important;
}
/* Background Wave Pattern (Simplified) */
.footer-section::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgb(0 0 0 / 14%) 0%, #0000001c 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.footer-links li { 

 }
.footer-links a {
   text-decoration: none;
    color: #333;
    font-size: 14px;
    margin: 10px 0px;
}
.footer-links a.pnklnk {
   border: 1px solid rgba(220, 53, 69, 0.7);
    display: inline-block;
    padding: 5px 10px;
    background: rgba(220, 53, 69, 0.2);
}
.coll_btn {
    color: #262626 !important;
    background: #e58089;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 10px;
    display: inline-block;
    text-align: center;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}
.contact-info p{
    display: flex;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin: 0 0 8px;
    font-size: 13px;
}
.contact-info i{
        height: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 5px;
    background: #e5808947;
    color: #e58089;
    margin: 0 7px 0 0;
    border: 1px solid #e58089;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #3b5998; /* Facebook Blue */
    color: white;
    margin-right: 1px;
    text-decoration: none;
}

.social-icons a:last-child { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2397, #833ab4); }

.bottom-bar {
        background: #0a0f19;
    padding: 5px 0;
}
.bottom-bar p{
    color: #b5b5b5;
    font-size: 12px;
    margin: 0 !important;
}

.circle-icon {
    background-color: var(--brand-pink);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.7rem;
}
.text-pink {
    color: #e58089;
}
.back-top {
    color: #b5b5b5;
    font-size: 12px;
    float: right;
    margin-right: 0rem;
}
.back-top i {
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 100%;
    background: #e8393b;
    margin: 0 0 0 10px;
}




.contact-section{
    background: url(../../images/images/45.jpg);
    background-repeat: no-repeat;
    background-position: bottom -126% left -56%;
    position: relative;
}
.contact-section:before {
    content: '';
    position: absolute;
    background: #ffffffad;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.left-illustration{
    position:absolute;
    left:0;
    bottom:0;
    width:180px;
    opacity:.95;
}

.cntct .form-control{
    background: white !important;
    box-shadow: none !important;
    margin: 3px 0px;
    border-radius: 44px !important;
    height: 48px;
    padding-left: 40px;
    text-transform: uppercase;
    font-size: 15px;
    border: 2px solid #c32232 !important;
}
.cntct{
    background: url(../../images/images/53.png);
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    background-size: contain;
}
.form-control:focus{
    box-shadow:none;
    border-color:#dc3545;
}


.captcha-box{
    width:55px;
    height:22px;
    background:#000;
    color:#fff;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:8px;
}

.send-btn{
    background: #e6848d;
    border: none;
    border-radius: 25px;
    color: #fff;
    padding: 8px 28px;
    font-size: 12px;
    margin-top: 20px;
    margin: 16px 10px 20px 10px;
    height: auto;
    line-height: 20px;
    padding: 12px 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin-right: 5px;
    background-color: #e58089;
    border-radius: 40px;
    overflow: hidden;
}

.contact-info{
    /*margin-top:80px;*/
}

.info-item{
    text-align: center;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    padding-bottom: 0;
    min-height: auto;
    margin-bottom: 15px;
    position: relative;
}

.info-icon{
        height: 70px;
    width: 70px;
    line-height: 77px;
    margin: 0 0 20px;
    text-align: center;
    border-radius: 100%;
    background: #f8f8f8;
    color: #555;
    font-size: 20px;
    display: inline-block;
}

.info-title{
    font-size: 20px;
    padding-bottom: 8px;
    color: #1e293d;
}

.info-text{
    color: #333;
    font-size: 15px;
}
.social-icons {
    /* overflow: hidden; */
    background: transparent;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    float: left;
    margin: 0 0 0 0px;
    padding-right: 0px !important;
    padding-left: 0px !important;
}
.address-column .social-icons li {
    margin-right: 0px;
    background: transparent !important;
}

.social-icons li:first-child {
    margin: 0;
}
.address-column .social-icons li a {
    height: 27px;
    width: 27px;
    line-height: 27px;
    font-size: 14px;
}

.address-column .social-icons li a {
    transition: 0.3s ease-in-out;
}
.social-icons li a.facebook {
    background: #3c5899;
}
.address-column .social-icons li:hover a {
    color: #fff !important;
    transform: rotate(360deg);
}


.fb{background:#1877f2;}
.in{background:#0a66c2;}
.ig{background:#e1306c;}
.wa{background:#25d366;}

@media(max-width:991px){

.contact-info{
    margin-top:50px;
    row-gap:30px;
}

.left-illustration{
    display:none;
}
}

.price_page_bnr {
    background: #e58089;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.disp_tbcl {
    text-align: center;
    display: block;
    vertical-align: middle;
    height: auto;
    max-width: 100%;
    width: 100%;
    padding: 70px 0 43px;
    margin: auto;
}
.inner-page-heading h1 {
    font-family: "Roboto Slab" !important;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 34px;
    color: #fff;
    letter-spacing: 2px;
}
.inner-page-heading h2 {
    color: #fff;
    margin-bottom: 0;
    font-family: 'Roboto Slab' ;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 12px;
}
.tc-padding{
    background: url(../../images/images/53.png);
    background-repeat: no-repeat;
    background-position: top -100px right -200px;
    background-size: contain;
}
.key_software .key_inner {
    gap: 15px;
    /* align-items: center; */
}
.key_software .key_inner p {
    font-size: 28px;
    max-width: 200px;
    font-weight: 300;
    color: #000;
    padding-left: 0;
    padding-top: 10px;
    margin-bottom: 0px;
    font-family: "Roboto Slab" !important;
    text-align: left;
    font-style: italic;
    text-decoration: none;
    width: -webkit-fill-available;
}
.key_software .key_inner ul li {
    margin-bottom: 5px;
    margin-top: 5px;
    display: inline-block;
}
.key_software .key_inner ul li a {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    border: 2px solid #e58089;
    background: #fff;
    border-radius: 20px;
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
}
.key_software .key_inner ul li a {
    padding: 9px 20px;
}
hr {
    display: block;
    width: 100%;
    opacity: 1 !important;
    color: #000;
    border-top: 1px solid #e58089 !important;
    margin: 0 0 17px 0 !important;
}
.softwr_detail_holdr {
    padding: 25px;
    border: 3px solid #e58089;
    border-radius: 40px;
    box-shadow: none;
    background: #fff;
    height:100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.event-detail h4 {
    font-size: 23px;
    margin: 25px 0 15px 0;
    overflow: hidden;
    height: auto !important;
    color: #c9666e;
    font-weight: 700;
}
.event-detail p {
    font-size: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    line-height: 1.6;
    height: auto !important;
}
.rating-nd-price {
    overflow: hidden;
    border-bottom: 1px solid #e58089;
    padding: 0 0 10px 0;
}
.rating-nd-price h3, .softwr_detail_holdr .event-detail .rating-nd-price p {
    margin: 0;
    font-family: "Roboto Slab" !important;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
}
.softwr_detail_holdr .event-detail .rating-nd-price p .spppn {
    color: #e58089;
}
.aurthor-detail {
    overflow: hidden;
    text-align: center;
}
.event-detail a {
    margin: 10px 0 0px 0;
    display: block;
}
.aurthor-detail a span {
    display: inline-block;
    background: #fff;
    color: #c9666e;
    padding: 0px 0px;
    border-radius: 0px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
a.add-wish {
    text-align: right;
}
a.add-wish img {
    width: 29px;
}
.softwr_detail_holdr .event-img a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.highlighted{
    border:2px solid #0437F2 !important;
    transition:0.3s;
    box-shadow:0 0 15px rgba(4,55,242,0.25);
}


    .push-wrapper{
        background: url(../../images/images/53.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 33px right;
    position: relative;
    }
    .bsxdf{
        background: #fff;
    padding: 35px;
    height:100%;
    border-radius: 15px;
    box-shadow: 0 0 6px #c5c5c5;
    margin-bottom: 0px;
    }
    .push-wrapper:before{
        content:'';
        position:absolute;
        width:100%;
        height:100%;
        left:0;
        top:0;
        background:#ffffff9e;
    }
    .push-wrapper.bgbg:before {
    background: #000000cc;
}
    .container{
        position:relative;
        
    }
    .main-content {
    padding: 20px 0px;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: none;
}
.error {
    color: red;
    font-size: 0.9em;
}
.bnnr-txt {
    font-size: 45px;
    font-family: "Roboto Slab" !important;
    text-align: left;
    margin: 0px 0 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:#fff;
}
.product_details_area h2{
    font-size: 40px;
    font-family: "Roboto Slab" !important;
    font-style: italic;
    margin: 0;
    text-align: left;
}
.push-wrapper.bgbg h2, .push-wrapper.bgbg p{
    color:#fff;
}
.product_details_area h2 span{
    color:rgb(195 34 50) !important;
}
hr {
    
    border-top: 1px solid rgb(195 34 50) !important;
    width: 100%;
}
.dddflx{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 20px;
}
.tab_sofwr_pg img{
    filter: invert(2);
    max-height: 40px;
    padding: 3px 0;
}
body h2{
    font-size: 30px;
    font-family: "Roboto Slab" ;
    text-align: left;
    margin: 0px 0 25px;
    text-transform: initial;
    letter-spacing: 0px;
}
body h3{
    font-weight: 600;
    font-size: 20px;
    font-family: "Roboto Slab" ;
    text-align: left;
    margin: 0px 0 20px;
    text-transform: initial;
    letter-spacing: 0px;
}
body h4{
    font-size: 20px;
    font-family: "Roboto Slab";
    margin: 0 0 15px;
    font-weight: 700;
}
.bsxdf ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color:#dc3545;
}
.bsxdf ul li {
        margin-bottom: 6px;
    padding-left: 20px;
    font-size: 14px;
    position: relative;
}
.card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #dc3545, #dc3545);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
}
.row.sfdf .bsxdf ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}
.row.fbgbg .bsxdf ul li::before {
    content: '➜';
    position: absolute;
    left: 0;
    color: #dc3545;
}


.starter-package{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
    overflow:hidden;
    position:relative;
    height:100%;
}

.package-top{
    margin-bottom:20px;
}

.tag{
    display:inline-block;
    background:#8b1538;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.package-top h2{
    font-size:29px;
    color:#111;
    text-align:center;
    line-height:1.3;
    margin:0;
}

.ideal-box,
.feature-box{
    margin-bottom: 20px;
}

.ideal-box h3,
.feature-box h3,
.price-section h3{
    font-size: 20px;
    margin-bottom: 20px;
    color: #c9666e;
    padding: 10px;
    border-top: 1px solid #c9666e;
    border-bottom: 1px solid #c9666e;
    text-align: center;
}

.ideal-box ul{
    padding:0;
    margin:0;
    list-style:none;
}

.ideal-box ul li{
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:10px;
}

.feature-item{
    background:#fff;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0;
    color: #616060;
}

.feature-item::before{
    content:"✓";
    position:absolute;
    left: 6px;
    top: 34%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius:50%;
    background:#c9666e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}


.price-section{
    background:linear-gradient(135deg,#c9666e,#c9666e);
    padding:12px;
    border-radius:10px;
    color:#fff;
    text-align:center;
    margin-bottom:20px;
}

.price-section h3{
    color:#fff;
}

.price{
    font-size:25px;
    font-weight:700;
    margin:2px 0;
}

.support-section{
    text-align:center;
    margin-bottom:35px;
}

.support-section h4{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.support-price{
    font-size:25px;
    font-weight:700;
    color:#fff;
}

.package-btn{
    width:100%;
    height: 46px;
    border: none;
    border-radius: 8px;
    background:linear-gradient(135deg,#c9666e,#c9666e);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.package-btn:hover{
    box-shadow:0 12px 25px rgba(139,21,56,0.3);
}
.annl-price{
    font-size: 17px;
    font-weight: 700;
}
@media(max-width:768px){

    .starter-package{
        padding:25px;
    }

    .package-top h2{
        font-size:30px;
    }

    .price{
        font-size:20px;
    }

    .support-price{
        font-size:20px;
    }

}
.bsxdfss h3{
    font-size:35px;
}
ul li{
    font-size:15px;
    list-style-type: none;
}
ul{
    padding: 0;
}
.bsxdf h3:first-child{
    font-size:25px;
}
@media (min-width:768px){
    .bbfgfgf img{
        /*max-height: 458px;*/
    object-fit: cover;
    border-radius:10px;
    }
    .hsgshs img{
        max-height: 450px;
        object-fit: cover;
        border-radius:10px;
    }
}
.bdhfgsd{
    text-align: center;
    padding: 20px 10px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 5px #3434343b;
}
.bdhfgsd img{
    width:100%;
    max-width:100px;
}
.bdhf{
    font-size: 17px;
    font-weight: 600;
}
h4.bfgfh{
    margin-bottom: 25px;
}
.bfgtr .bdhfgsd{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    aspect-ratio: 1;
    justify-content: center;
    border-top: 4px solid rgb(195 34 50);
}
.bfgtr .bdhfgsd img{
    max-width:50px;
    margin-bottom: 11px;
}
.bfgtr .bdhfgsd .bdhf{
    font-size: 15px;
}
.bghbg img{
    width:100%;
    border-radius:14px;
}
.fbgbgss{
    align-items:center;
}
.fbgbgss .bsxdf{
    background:transparent;
    border-radius:0;
    padding:0;
    box-shadow: none;
}
.fbgbgss .bsxdf ul{
    background:transparent;
}
.fbgbgss .bsxdf ul li{
        font-size: 15px;
    margin-bottom: 11px;
}
.fbgbgss .bsxdf ul li:after {
    position: absolute;
    background: none;
    content: "" !important;
    width: 12px;
    height: 12px;
    left: 0;
    top: 4px;
    border-radius: 100%;
    border: 1px solid #dc3545;
}
.fbgbgss .bsxdf ul li:before {
    position: absolute;
    background: #dc3545;
    content: "" !important;
    width: 6px;
    height: 6px;
    left: 3px !important;
    top: 7px;
    border-radius: 100%;
}
.fbgbgss .bsxdf h4{
    font-size: 30px;
    margin-bottom:20px;
}
.form {
    background-color: #ffffff;
    padding: 30px;
    margin-left: 78px;
    border-radius: 20px;
}
.submit_btn {
    background-color: #dc3545;
    color: #ffffff;
    height: 45px;
    border: 1px solid #dc3545;
    padding: 0px 40px;
}
.submit_btn:hover {
    background-color: #dc3545;
    color: #ffffff;
    border: 1px solid #dc3545;
}
.form textarea, .form input {
    height: auto;
    border: 2px solid #dc3545;
    background-color: #fde1e4;
    padding: 15px;
    line-height: normal;
    border-radius: 20px;
    margin-bottom: 15px;
}
.tpp h2{
    font-size: 35px;
}
.tpp p{
    font-size:17px;
}
.btnsss {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}
.btnsss a {
    text-decoration: none;
    background: #000;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    border: 1px solid #000;
    transition: all .5s ease-in-out;
}
.btnsss a:hover {
    border: 1px solid #000;
    background: transparent;
    color: #000;
}
.bsgdtf {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.bsgdtf .bsxdf {
    padding: 20px;
}
.bvcxz .bsxdf {
    background: #fde7e7;
    padding: 13px;
    border-radius: 10px;
}
.bvcxz .bsxdf ul {
    background: transparent;
    margin: 0;
}

.product_details_area h2{
    font-size: 40px;
    font-family: "Roboto Slab" ;
    font-style: italic;
    margin: 0;
    text-align: left;
}
.product_details_area h2 span{
    color:rgb(195 34 50) !important;
}
.prgrp{
    font-size:20px;
    text-align:center;
    width:100%;
    margin:0 0 15px;
}
hr {
    
    border-top: 1px solid rgb(195 34 50) !important;
    width: 100%;
}
.dddflx{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 20px;
    margin-bottom: 10px;
}
.tab_sofwr_pg img{
    filter: invert(2);
    max-height: 40px;
    padding: 3px 0;
}
.bnnr-txt {
    font-size: 45px;
    text-align: center;
    margin: 0px 0 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:#000;
}
.hdng-sb {
    font-size: 30px;
    text-align: center;
    margin-bottom: 24px;
    font-family: "Roboto Slab" !important;
    text-transform: uppercase;
}
.rates {
    color: #c32232;
    font-style: italic;
}
.tab_sofwr_pg {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: transparent;
}
.tab_sofwr_pg li {
    display: flex;
    margin: 0 5px;
    border: 2px solid #c32232 !important;
    justify-content: space-between;
    width: 100%;
    padding: 2px 20px;
    border-radius: 40px;
    align-items: center;
}
.tab_ul_icon {
    float: left;
    width: 40px;
    padding: 3px 0 0 0;
    margin: 0 10px 0 0;
}
.tab_ul_text {
    float: left;
    font-size: 15px;
    color: #000;
    text-align: right;
    width: 64%;
    font-weight: 400;
    line-height: 1.2;
}

.btn-1.shadow-0 {
    box-shadow: none;
}

.btn-1.sm {
    margin: 0px 10px 20px 10px;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    margin-right: 5px;
    background-color: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}
.product_feaature {
    background: transparent;
    margin: 8px 0 20px 29px;
}
.product_feaature li {
    font-size: 16px;
    width: 100%;
    list-style: none;
    background: transparent;
    position: relative;
        margin: 10px 0 10px;
    display: list-item;
    font-family: 'Roboto Slab';
}
.product_feaature li:before {
    content: "\f25a";
    position: absolute;
    top: -1px;
    left: -28px;
    font-family: "FontAwesome";
    font-size: 20px;
    color: #dc3545;
    font-weight: bold;
    transform: rotate(90deg);
}
.class_detailpage_img img {
    width: 100%;
    border-radius: 40px;
    border: 3px solid #c32232;
}
hr {
    border-top: 2px solid rgb(195 34 50) !important;
    width: 100%;
}
.breadcrumb {
    background: #e58089 !important;
    border-radius: 0px;
    margin-bottom: 0;
}
.breadcrumb-inner ul {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: auto;
    padding: 10px 0 10px;
}
.breadcrumb ul li a {
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    padding-top: 0px;
    opacity: 1px;
    text-decoration: none;
}
.list-inline>li {
    color: #fff;
    padding-left: 1rem;
}
.breadcrumb ul li:after {
    color: #fff;
    content: "/";
    font-size: 12px;
    line-height: 24px;
    margin-left: 9px;
    margin-right: 0px;
    padding: 0px;
}
.breadcrumb ul li.active {
    color: #fff !important;
}
.breadcrumb ul li:last-child:after {
    content: "";
}

.acc-item{
background:#fff;
margin-bottom:10px;
border-radius:6px;
overflow:hidden;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.acc-title{
padding: 10px 3px;
background: #ffffff;
color: #000000;
cursor: pointer;
position: relative;
font-size: 14px;
border: none;
border-top: 0.5px solid #cdcdcd;
border-bottom: 0.5px solid #cdcdcd;
border-radius: 0;
}
.acc-title::after{
content: '+';
position: absolute;
right: 0;
font-size: 20px;
transition: 0.3s;
top: 0;
background: #fff;
padding: 4px;
color: #e77a8a;
}

.acc-title.active::after{
content:'-';
}
.acc-content{
display:none;
padding:15px;
color:#333;
}
.acc-title label {
    display: inline-block;
    margin-bottom: .5rem;
}
.slider-box {
    width: 90%;
}
.slider-box label {
    display: inline-block;
}
.hide.show{
 display:block !important;
 }
.section-title {
    font-size: 18px;
    padding: 12px 0px;
    margin-bottom: 0px;
    text-align: left;
    text-shadow: none;
}
.main-sections{
    background: #f2f2f2;
    padding: 50px 0
}
.filterr{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(36, 39, 44, 0.15);
}
.filterr ul li {
    width: 100%;
    position: relative;
}
.filterr ul li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    z-index: 1;
}
.filterr ul li a {
    padding: 5px 5px;
    font-size: 12px;
    letter-spacing: 0.5;
    color: black;
    display: block;
    text-decoration: none;
}
.filterr ul li:hover {
    background-color: #e74748;
}
.filterr ul li:hover a {
    color: #fff;
}

input#priceRange {
    margin-top: -3rem;
    margin-left: 2rem;
}

.form-control, input, input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
    height: 28px;
    line-height: 48px;
    width: 100%;
    border-radius: 0;
    font-weight: 400;
    width: 100%;
    background: 0 0;
    padding: 0 20px;
    box-shadow: none;
}
#price-range {
    width: 22rem;
}
#price-range div {
    background-color: red;
}
button#price_submit {
    border: none;
    font-size: 14px !important;
    width: 7rem;
    border-radius: 3px;
    background: black;
    height: 2.7rem !important;
}
.filterr ul li::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    z-index: 1;
}


.filterr ul li a {
    padding: 10px 20px;
    position: relative;
    z-index: 2;
    padding: 7px 5px;
    font-size: 12px;
    letter-spacing: 0.5;
    color: black;
    margin-left: 28px;
}
.filterr ul li .form-check-input {
    display: inline-block;
    text-align: left;
    position: absolute;
    left: 9px;
    top: 4px;
    accent-color: red;
    z-index: 99;
    width: 17px;
    height: 17px;
    padding: 0;
}
.fa-solid.fa-star {
    color: #EBC744;
}
.prdct {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(36, 39, 44, 0.15);
    border: 2px solid #e58089;
}
.product-image {
    height: 136px !important;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.product-info .name {
    font-size: 16px;
    margin: 8px 0px;
}
.product-info .name a{
    color: #665f5d;
    text-decoration: none;
}
.rating>input {
    display: none;
}
.rating {
       border: none;
    display: flex;
    position: relative;
    margin: 10px 0
}
.rating>label {
    color: #ddd;
    float: right;
}
.product-info .product-price .price {
    color: #000 !important;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    margin-right: 8px;
}
.product-info .product-price .price-before-discount {
    text-decoration: line-through;
    color: #555;
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
}


a.btn.btn-primary.btn_cart.card-btn {
    border: none;
    height: 29.5px;
    width: 80px ;
    padding: 5.3px;
    color: #333 !important;
    background: transparent !important;
    border: 1px solid #333 !important;
    line-height: 19px;
    font-size: 11px;
}
a.btn.btn-primary.btn_cart.card-btn.htht {
    border: none;
    height: 29.5px !important;
    width: auto !important;
    padding: 5.3px;
    color: #333 !important;
    background: transparent !important;
    border: 1px solid #333 !important;
    line-height: 19px;
    font-size: 11px;
}
a.btn.btn-danger.card-btn {
    border-radius: 0.25rem !important;
    color: #333 !important;
    padding: 4px;
}
.rating.rateit i{
    color: #ddd;
    font-size: 14px;
}
.product-price{
    margin: 0 0 10px;
}
.tc-padding {
    padding: 0 0 60px;
    background: #f5f5f5;
}
.main-heading-holder {
    text-align: left;
    padding: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    word-spacing: 4px;
    font-weight: 300 !important;
    font-size: 72px;
    line-height: 110%;
}
.main-heading {
    display: inline-block;
    position: relative;
    padding: 0 0;
}
.main-heading.style-1 h2 {
    margin: 0;
    padding: 0 20px 0px 30px;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.main-heading.style-1 h2 .theme-color {
    color: #e58089;
}
.content_pagesinr p {
    padding: 0 10px;
    margin: 0 0 15px;
    text-align: justify;
    font-size: 16px;
    color: #333;
}
.content_pagesinr b {
    color: #292929;
    font-size: 19px;
    margin: 10px 0;
    display: inline-block;
}
.contact_sec {
    background: #cdcdcd73 url(../../images/images/map-images.png);
    position: relative;
    padding-bottom: 30px;
}
.sec-heading {
    margin: 0 0 30px;
    padding: 30px 0 15px;
    border-bottom: 1px solid #ececec;
    position: relative;
}
.sec-heading h3, .sec-heading h4 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}
.sec-heading::before {
    content: "";
    position: absolute;
    width: 70px;
    border-bottom: 3px solid;
    bottom: -2px;
    left: 0;
}
.map_section {
    width: 100%;
    height: 285px;
    margin: 0 auto;
    text-align: center;
}
.map_section iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sending-form .form-group {
    position: relative;
    margin-bottom: 0px !important;
}
.sending-form .form-group .form-control {
    height: 40px;
    font-size: 13px;
    border-radius: 0;
    padding-left: 40px;
}

.contact_sec .form-group input, .form-group textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.sending-form .form-group textarea.form-control{
    height: 100px;
    margin: 15px 0;
}
.sending-form .form-group i {
    position: absolute;
    left: 11px;
    top: 14px;
    color: #555;
    font-size: 13px;
}
.address {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
}
.address p i {
    margin-right: 5px;
}
.address h3 {
    font-size: 18px;
    margin: 0px 0 10px;
}
.address p span img {
    width: 20px;
    height: 20px;
    margin-top: 10px;
}
.address p{
    font-size: 12px;
    margin-bottom: 5px;
}

.vndr_Thrd_SectionCard {
    background: #FFFFFF;
    box-shadow: 0px 6px 30px rgba(45, 45, 45, 0.16);
    border-radius: 14px;
    padding: 22px 44px 22px 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.vndr_Thrd_SectionCard_main {
    margin-bottom: 35px;
}

.step_number {
    background-color: #e74748;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 100px;
    padding: 4px 9px;
    height: 24px;
    width: 24px;
    min-width: 24px;
}

.vndr_Thrd_SectionCard_main:nth-child(2)::before {
    content: "";
    position: absolute;
    border: 1px solid #bce1f3;
    transform: rotate(270deg);
    width: 32%;
    bottom: 56px;
    left: -50px;
    z-index: -1;
}
.col-md-12.vndr_Thrd_SectionCard_main {
    z-index: 1;
}

.vndr_Thrd_SectionCard_content h5 {
    font-size: 18px;
    font-weight: 500;
    color: #252530;
    margin: 0px 0px 4px !important;
}

.vndr_Thrd_SectionCard_content p {
    font-size: 15px;
    color: #888787;
    margin: 0 !important;
}

/***************/

.colabrateWrapper{
    background : #fff;
}
.ourMetrix_cardheader p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    font-family: "Noto Sans JP", sans-serif ;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ourmetrixInfo{
    font-size: 14px;
    margin-bottom: 16px;
}

.ourMetrix_cardWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.ourMetrix_cardheader {
    text-align: left;
    margin-top: 10px;
}

.ourMetrix_cards {
    padding: 30px;
    background: #fff;
    width: 100%;
    height: 100%;
    clear: both;
    border-radius: 10px;
    box-shadow: inset 0 0 20px #c32232;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
    
    .metrix_icon {
    margin: auto;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 60px;
    }
    
  
    
    .metrix_icon i {
    margin-top: -0.5rem;
    font-weight: 100;
    background: #fff;
    padding: 13px;
    border-radius: 10px;
}
   
/*.colaberateForm-heading {*/
/*    margin: 0 0 30px;*/
/*    padding: 16px 0 15px;*/
/*    border-bottom: 1px solid #ececec;*/
/*    position: relative;*/
/*}*/

.colaberateForm-heading h3, .colaberateForm-heading h4 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    float: left;
}

/*.colaberateForm-heading::after {*/
/*    visibility: hidden;*/
/*    display: block;*/
/*    font-size: 0;*/
/*    content: " ";*/
/*    clear: both;*/
/*    height: 0;*/
/*}*/

/*.colaberateForm-heading::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 70px;*/
/*    border-bottom: 3px solid;*/
/*    bottom: -2px;*/
/*    left: 0;*/
/*}*/

.maincard_wrap {
    margin-bottom: 20px;
}

button#submit.checkout-page-button {
    margin: 0px 10px 20px 10px;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-right: 5px;
    background-color: #eb0a0f;
}
.generate.generate_form form.register-form .form-group > textarea {
    background: white !important;
    box-shadow: none !important;
    margin: 3px 0px;
    border-radius: 44px !important;
    padding: 33px !important;
    text-transform: uppercase;
    font-size: 18px;
    border: 2px solid #c32232 !important;
}
.generate.generate_form form.register-form .form-group > input,
.generate.generate_form form.register-form .form-group > textara{
   background: white !important;
    box-shadow: none !important;
    margin: 3px 0px;
    border-radius: 44px !important;
    /*padding: 33px !important;*/
    text-transform:uppercase;
    font-size: 15px;
    border:2px solid #c32232 !important;
}

.ourMetrix_cardheader{
    text-align:center;
}

.ourMetrix_cardheader p:nth-child(2) {
    margin-bottom: 4px;
    font-weight: 200;
    font-size: 20px;
    font-style: italic;
}




    .form-group > input{background:white !important;
    box-shadow: 0 2px 4px 0 rgb(36 39 44 / 15%) !important;
    margin:10px 0px;
    border:none;
}
.form-group{box-shadow:none !important;}
.form-group > input:focus{background:white;
    box-shadow: 0 2px 4px 0 rgb(36 39 44 / 15%);
}
   
    
    i.fa.fa-cart-arrow-down.fa-2x:hover{
    color:red !important;
}
.generate{
   box-shadow: none;
    background: white;
    padding: 0px;
    margin-top: 0px;
}
.form-group {
    margin-bottom: 4rem;
}

@media (max-width: 480px){
    .colabrateWrapper .generate.generate_form{
        margin: 40px  0px;
        padding:15px;
    }
    .colabrateWrapper .generate.generate_form .form-group{
        margin-bottom:0;
    }
}
h2 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 65px;
    letter-spacing: 12px;
}
.colaberateForm-heading h2{
    margin: 0;
    text-transform: uppercase;
    font-size: 72px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 3px 3px 4px #343434;
    font-family: red rose;
}
.maincard_wrap  h3{
        font-family: "Roboto Slab", serif;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 1.5;
    font-weight: 400;
    margin: 10px 0 30px;
}
.register-form .btn-upper.btn.btn-primary.checkout-page-button {
    border: none;
    border-radius: 0;
    margin: auto;
    margin-bottom: 1rem;
    width: auto;
    height: auto;
    display: flex;
    font-size: 15px !important;
    float: none !important;
    margin-right: auto !important;
    padding: 13px 25px !important;
    border-radius: 40px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    margin-top:25px;
}
.steps-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* COMMON STEP */
.step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}

.step-content {
  max-width: 73%;
}

.step-content h4 {
  color: #c32232;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 400;
}

.step-content p {
  font-size: 17px;
    letter-spacing: 2px;
    line-height: 1.8;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* STEP NUMBERS */
.step-number {
  font-size: 300px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 4px #c32232;
    line-height: 0.67;
}

.step-number.right {
  margin-left: 40px;
  margin-right: 0;
}

/* STEP ALIGNMENTS */
.step-one {
  justify-content: flex-start;
}

.step-two {
  justify-content: flex-end;
}

/* CURVES */
.curve {
  position: absolute;
  border: 10px dotted #c32232;
}

.curve-top {
  width: 30%;
    height: 82%;
    border-left: none;
    border-bottom: none;
    top: -20px;
    right: 30px;
    border-radius: 0 80px 0 0;
}
.step-content.bnghg{
    max-width:64%;
}

.line-top{
    position: absolute;
    width: 45%;
    border-top: 10px solid #c32232;
    left: 20%;
    top: -20px;
}
.dot-bottom{
    position: absolute;
    width: 71%;
    border-bottom: 10px dotted #c32232;
    left: 20%;
    bottom: -10px;
}
.curve-bottom {
  width: 25%;
  height: 100%;
  border-right: none;
  border-top: none;
  bottom: -40px;
  left: 0px;
  border-radius: 0 0 0 80px;
}
.arrow-down {
  width: 10px;
    height: 40px;
    background: #c32232;
    position: relative;
    bottom: 0;
    right: 0;
    left: 49px;
    top: 80px;
}

.arrow-down::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #c32232;
}
.secnd.arrow-down {
   right: auto;
    align-items: baseline;
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
}
.secnd.curve-top {
  border:none;
  border-top: 10px dotted #c32232;
  border-left: 10px dotted #c32232;
    top: -20px;
    left: 0px;
    border-radius: 80px 0 0 0;
}
.secnd.line-top{
    right: 21%;
    left: auto;
    top: -20px;
}
.secnd.dot-bottom{
   right: 20%;
    bottom: -10px;
    left: 6%;
}
.cart-badge{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#e58089;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:-3px;
    right:-8px;
    font-size:15px;
}

/* Profile Button */

.profile-wrapper{
    position:relative;
}
.crtt{
        font-size: 20px;
    color: #e74964;
}
.item-controls {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.profile-wrapper a{
    text-decoration:none;
}
.lft-img{
    display: flex;
    gap: 20px;
}
.lft-img .imggg{
    width:58%;
}
.item-controlss a{
        color: #ab1e56;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}
.profile-wrapper .profile-btn{
    border:none;
    border-radius:0px;
    background:linear-gradient(90deg,#e58089,#e58089);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 6px;
    font-size:14px;
    font-weight:500;
    box-shadow:1px 2px 5px rgba(231, 70, 99, .25);
}

.profile-wrapper .profile-left{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
}

.profile-wrapper .profile-icon{
    padding: 5px 2px 4px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e58089;
    font-size: 20px;
}

.profile-wrapper .arrow{
    font-size:14px;
    padding-left:0px;
}

/* Dropdown */

.profile-wrapper .profile-dropdown{
    max-width: 330px;
    position: absolute;
    top: 47px;
    z-index: 99;
    right: 0;
    /* left: -20px; */
    background: #fbf7f7;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgb(100 99 99 / 67%);
}
.btn-secondary.swipe-to-top{
    display:none;
}
.profile-wrapper .profile-dropdown a{
    cursor:pointer;
    display:flex;
    align-items:center;
gap: 15px;
    padding: 8px 14px;
    text-decoration: none;
    color: #24304d;
    font-size: 15px;
    font-weight:400;

    border-bottom:1px solid #ececec;

    transition:.3s;

}
.profile-wrapper .profile-dropdown a span,
.profile-wrapper .profile-dropdown a i {
    cursor:pointer;
}

.profile-wrapper .profile-dropdown a:last-child{
    border:none;
}

.profile-wrapper .profile-dropdown a:hover{

    background:#fff4f6;

}

.profile-wrapper .icon-circle{
    width: 30px;
    height: 30px;
    background: #ef8c96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.icon-circle.conslt{
    /*width:47px;*/
}

.profile-wrapper .logout{
    color:#e58089!important;
}

.profile-wrapper .logout .icon-circle{
    /*color:#e58089;*/
}
@media (max-width:767px){
    .generate.generate_form form.register-form .form-group > input,
    .generate.generate_form form.register-form .form-group > textarea{
    padding: 10px;
    border-radius: 9px !important;
    }
    .producTab .nav-tabs>li a {
    padding: 7px 20px 7px 20px !important;
    font-size: 14px !important;
}
}
@media (max-width:767px){
    .wrapper.push-wrapper.mt-5.pt-5{
        margin-top:0 !important;
    }
    .product_feaature {
    margin: 0px 0 0 20px;
}
.product_feaature li {
    font-size: 14px;
}
.product_feaature li:before {
    top: 0px;
    left: -20px;
    font-size: 14px;
}
.btn-1.sm {
    font-size: 14px !important;
}
}

.generate.generate_form form.register-form .form-group > input, .generate.generate_form form.register-form .form-group > textara {
        background: white !important;
    box-shadow: none !important;
    margin: 3px 0px;
    border-radius: 44px !important;
    padding: 11px 25px;
    height: auto;
    text-transform: uppercase;
    line-height: normal;
    font-size: 15px;
    border: 2px solid #c32232 !important;
}
.register-form.outer-top-xs .form-group{
    margin-bottom: 15px;
}

.btn-upper {
    background: #e58089 !important;
}
/*.main-content {*/
/*    padding: 50px 20px 50px;*/
/*    background-color: white;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0 2px 4px 0 rgba(36, 39, 44, 0.15);*/
/*}*/

.razorpay-payment-button.svelte-ohbfj8:nth-child(2){
    display: none;
}
.rightpay {
    text-align: center;
}
.rightpay .PaymentButton--rzp-light-standard.svelte-ekc7fv.svelte-ekc7fv {
    background: #ccc;
    border-color: #ccc;
    color: #000;
}
.leftpay {
    text-align: center;
}
.leftpay .PaymentButton--rzp-outline-standard.svelte-ekc7fv.svelte-ekc7fv {
    background: #30D14E;
    border-color: #30D14E;
    color: #fff;
}

.login-form {
    padding: 0px 0px 33px 0px;
    margin: 40px 0px -3px 0px;
}
.loginpage-img {
    position: relative;
}

.loginpage-img {
    background: url(../../images/images/about_background.png) no-repeat;
    /*background-position: -69px -101px;*/
    object-fit: cover;
    padding: 50px 0;
    width: 100%;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
}
.sign-in:first-child .generate:last-child {
    padding-bottom: 30px !important;
}
.loginpage-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* z-index: 99999999; */
    height: 100%;
    top: 0;
}
#demo {
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    background-color: #fff;
    max-width: 578px;
    margin: 0 auto;
    height: 80%;
    z-index: 99999999999 !important;
    padding: 20px 68px;
    border-radius: 20px;
    box-shadow: 1px 13px 9px rgba(0, 0, 0, 0.4);
    background: url(../../images/images/about_background.png) no-repeat;
    background-position: -333px -102px;
}
#demo.show-popup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.otp-close-btn {
    width: unset;
    background-color: transparent;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: auto;
    right: 30px;
}
.gen-popupimg img {
    padding: 0px 0 20px;
}

.generate_form img {
    max-width: 30%;
}
.generate p {
    color: #b0adb0 !important;
    margin: 12px 0 12px;
    line-height: 16px;
}
.gen-popup-logi-btn {
    font-size: 14px;
    background-color: #dc3545 !important;
    width: unset !important;
    line-height: 60%;
    letter-spacing: 2px;
    padding-left: 40px !important;
    padding-right: 40px !important;
    border-radius: 20px;
    padding: 15px;
    text-transform: uppercase;
}

.inner-bottom-sm {
    padding-bottom: 80px;
}
.panel-group .panel {
    border-radius: 0;
    box-shadow: none;
    border-color: #EEEEEE;
}
.panel-default > .panel-heading {
    padding: 0;
    border-radius: 0;
    color: #212121 ! important;
    background-color: #FAFAFA !important;
    border-color: #EEEEEE;
}
.checkout-box .checkout-steps .panel .panel-heading, .checkout-box .checkout-progress-sidebar .panel .panel-heading {

    font-size: 20px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-transform: uppercase;
}
.checkout-box .checkout-steps .panel .panel-heading .unicase-checkout-title {
    margin: 0px !important;
    color: #1e293d;
}
.checkout-box .checkout-steps .panel .panel-heading .unicase-checkout-title a {
    color: #000;
    text-transform: uppercase;
    display: block;
}
.checkout-box .checkout-steps .panel .panel-heading .unicase-checkout-title a span {
    background-color: #aaaaaa;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    padding: 15px 20px;
    width: 7%;
    background-color: #dc3545;
}
.checkout-box .checkout-steps .panel-body {
    padding: 50px;
}

.panel-body {
    display: contents;
}
.checkout-steps h4 {
    margin: 0 25px 0;
    color: #1e293d;
    font-size: 18px;
    font-weight: 400;
}
.checkout-box .checkout-steps .checkout-step-01 .already-registered-login form .form-group .info-title {

    font-weight: normal;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    color: #575555;
    display: inline-block;
}
.checkout-steps .form-group input,
.checkout-steps .form-group select {
    height: 40px;
    font-size: 14px;
    background: white !important;
    box-shadow: 0px 0px 4px 0 rgb(36 39 44 / 58%) !important;
    margin: 10px 0px;
    border: none;
    line-height: normal;
    -webkit-appearance: auto;
    appearance: auto;
    appearance: auto;
}
.outer-top-bd {
    padding-top: 50px;
    background: #f5f5f5;
}
.accordion-collapse{
    background: #fff;
    padding: 20px;
}
.checkout-box .checkout-steps .panel .panel-heading, .checkout-box .checkout-progress-sidebar .panel .panel-heading {
    font-size: 20px;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 27px 30px;
    border-bottom: 1px solid #ddd;
    color: #212121 ! important;
    background-color: #FAFAFA !important;
    border-color: #EEEEEE;
}
.checkout-progress-sidebar .panel-body {
    display: contents;
}
.list-unstyled {
    padding-left: 0px !important;
}
.checkout-progress-sidebar li {
    display: block;
    width: 100%;
    float: left;
}
.checkout-box .checkout-progress-sidebar .panel-body ul li a {
    /* color: #393d45; */
    padding-left: 30px !important;
    font-size: 14px;
}

.checkout-box .checkout-progress-sidebar .panel-body ul li a {
    color: #393d45;
    padding: 13px 10px;
    border-bottom: 1px solid #e2e2de;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    display: block;
    text-decoration: none;
}
.checkout-progress-sidebar {
    background: #fff;
}
.shopping-cart .shopping-cart-table .table > thead > tr > th {
    text-align: center;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #000;
    font-weight: 600;
}
.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info h4 {
    margin-top: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    margin:0;
    text-transform: uppercase;
}
.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info h4 a {
    color: #000;
    font-weight: 400;
    text-align: center;
}
.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info h4 a:hover, .shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info h4 a:focus
{
    color: #021B63;
}
.reviews {
    padding: 1px 13px;
    color: #fff;
    display: inline-block;
    text-align: right;
    float: right;
    margin-top: 6px;
    cursor: pointer;
}
.shopping-cart .shopping-cart-table table tbody tr .cart-product-name-info .reviews {
    font-size: 11px;
    color: #aaa;
    float: left;
    margin-left: 5.5%;
}
.reviews a {
    color: rgb(53, 51, 51);
    font-size: 11px;
}
.shopping-cart .shopping-cart-table table tbody tr td {
    text-align: center;
    font-weight: 400;
    font-size: 13px;
}
.shopping-cart .shopping-cart-table table tbody tr .cart-image .entry-thumbnail {
    display: block;
    text-align: center;
}
.shopping-cart .shopping-cart-table table tbody tr td img {
    height: 80px;
    width: 100% !important;
}
.shopping-cart-table {
    border-radius: 10px;
    background: white;
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 25px 20px;
    box-shadow: 0 2px 4px 0 rgba(36, 39, 44, 0.15);
}
.main-slider img{
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
    }

    .thumb-slider{
      margin-top: 20px;
    }

    .thumb-slider .item{
      padding: 5px;
      cursor: pointer;
    }

    .thumb-slider img{
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      opacity: 0.5;
      transition: 0.3s;
    }

    .thumb-slider .slick-current img{
      opacity: 1;
      border: 3px solid #000;
    }

/*Responsive*/

@media (max-width:767px){
    .navbar-brand img{
        height:45px;
    }
    .navbar-toggler{
        padding: 0px;
    font-size: 17px;
    }
    .improve, .efficiency {
        font-size: 40px;
    }
        .business {
        font-size: 50px;
    }
    .review-text {
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 400;
}
.search-wrap input {
    line-height: 40px !important;
    font-size: 14px;
}
.search-btn {
    width: 50px;
    font-size: 18px;
}
.main-sc {
    grid-template-columns: repeat(2, 1fr);
}
.hero-section {
    overflow: hidden;
}
.about-section {
    padding-top: 80px;
    margin-top:0;
}
    .about-title {
        margin-bottom:15px;
        font-size: 35px;
        text-shadow: 1px 1px 4px #343434;
    }
    .about-text {
    letter-spacing: 0px;
    color: #000000;
    font-size: 14px;
    font-weight: 300;
}
.feature-box img {
    height: 70px;
}
.feature-title {
    font-size: 15px;
    font-weight: 400;
}
.why-title {
        font-size: 40px;
        text-shadow: 1px 1px 0px #cdc9c2 !important;
    }
        .why-card img {
        width: 100px;
        height: 100px;
    }
    .ai-title {
        font-size: 35px;
        margin-top: 0px;
    }
    .ai-card p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 0px;
}
.list-group-item {
    padding: 7px 10px;
    display: inline-block;
    width: auto;
    border: 1px solid #343434 !important;
    margin: 2px;
    line-height: 17px;
    font-weight: 400;
    font-size: 13px;
}
#categoryList{
    border-right: 0px solid #c3c3c3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: #fff;
    border-bottom: 1px solid #c3c3c3;
    border-radius: 0;
    padding: 5px;
}
.tabsss li {
    width: 100%;
    padding:8px;
}
    .ai-title {
        font-size: 30px;
        margin-top: 0px;
    }
.tabsss ul {
    padding: 0;
    display: grid;
    margin: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
}
    .why-card p {
        font-size: 14px;
        letter-spacing: 0;
    }
    .stat-number {
    font-size: 2rem;
    }
    .stat-text {
    font-size: 16px;
    }
    .count {
    padding: 10px;
}
.flag-card {
    width: 100%;
    padding:0 5px;
}
}
