:root {
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #EF8221;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #C71F25;
    --light: #EEEDED;
    --dark: #231F20;
    --lightInput: #CAC9C9;
    --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../front/fonts/Satoshi_Complete/Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf') format('otf');
}

@font-face {
    font-family: 'Coconat';
    src: url('../front/front/fonts/Coconat_Font_Family_(Fontmirror)/Coconat Regular 400.otf') format('otf');
}

p,
a {
    font-family: 'Coconat';
}

h1,
div,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi-Regular';
}

button:focus {
    outline: none;
}

.SocialICons ul {
    padding: 0;
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
}

.SocialICons li {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.SocialICons a {
    color: #000;
}

.TopMenu li a {
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white) !important;
}

.TopMenu li a:hover {
    color: var(--primary) !important;

}

.TopMenu {
    margin-right: 30px;
    gap: 18px;
}

ul.navbar-nav.TopMenu {
    font-size: 15px;
}

.CustomH {
    height: 80px;
    background: var(--header-bgcolor) !important;
}

.BtnAccess {
    position: absolute;
    bottom: 75px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;

}

.BtnAccess button {
    background: var(--danger);
    border: none;
    border-radius: 30px;
}

.Arrow {
    height: 35px;
    width: 35px;
    display: flex;
    background: #4B2B0E;
    color: var(--white);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.BtnAccess button {
    background: var(--danger);
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    height: 45px;
    width: 160px;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.BtnAccess a {
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
}

.CustomTabSize li {
    width: 33.333%;
    text-align: center;
    border: none !important;
    margin: 0;
    background: var(--background-bgcolor);
}

.CustomTabSize {
    gap: 5px;
    display: flex;
    justify-content: space-between;
    flex-flow: row;
    border: none;
}

.CustomTabSize li a {
    color: var(--black);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
}

.CustomTabSize li .active {
    background: #af2037 var(--primary);
    border: none;
    color: var(--white) !important;
}

.SearchBar input {
    height: 50px;
    border-radius: 0;
    background: var(--light);
    border-color: var(--light);
}

.SearchBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.SearchBar button {
    width: 100px;
    height: 50px;
    background:#c4a237 var(--primary);
    border: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/*.w-100 {
    width: 100% !important;
    height: 200px !important;
    background-size: cover;
    object-fit: cover;
}*/

.SearchForBrand {
    border: 2px solid var(--light);
    padding: 15px;
    height: 100%;
}

.TitleMAin {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--black);
    font-family: 'Satoshi-Regular';
}

.OrCompo span {
    background: #b21f24 !important;
    width: 70px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
}

.OrCompo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Inputs .form-control {
    background: var(--light);
    border-radius: 0;
    border-color: var(--light);
}

.Inputs label {
    color: #000;
    font-weight: 500;
}


/****** store page css ******/
.checkbox {
    position: relative;
}

.checkbox label {
    padding-left: 24px;
    font-size: 13px;
    margin: 0 !important;
    font-weight: 600;
    color: var(--black);
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+.box:before,
input[type="checkbox"]+.box:after {
    transition: all 0.3s;
}

input[type="checkbox"]+.box:after {
    position: absolute;
    left: 4px;
    top: 10px;
    margin-top: -5px;
    margin-left: -4px;
    display: inline-block;
    content: ' ';
    width: 16px;
    height: 16px;
    border: 2px solid var(--dark);
    border-radius: 2px;
    background-color: var(--white);
    z-index: 1000;
}

input[type="checkbox"]:checked+.box:after {
    background-color: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]:checked+.box:before {
    transform: rotate(45deg);
    position: absolute;
    left: 6px;
    top: 7px;
    width: 5px;
    height: 10px;
    border-width: 2px;
    border-style: solid;
    border-top: 0;
    border-left: 0;
    border-color: var(--white);
    content: '';
    z-index: 10000;
}

/***********************/

.CustomRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CheckBoxRow p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.Services {
    background: var(--light);
}

.Services p {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.Services .checkbox {
    margin-bottom: 15px;
}

.AboutBg {
    background-color: var(--black);
}

.InnerAbout p {
    color: var(--black);
    line-height: 30px;
}

.InnerAbout h1 {
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.InnerAbout {
    text-align: center;
}

.TopBar p {
    font-weight: 600;
    font-size: 20px;
    color: var(--black);
}

.TopBar img {
    width: 25px;
}

.TopBar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #E5E5E4;
    padding: 10px;
}

.StoreBox p {
    color:#af2037 var(--primary);
    font-weight: 500;
    font-size: 18px;
}

.StoreBox a,
.StoreBox a:hover {
 color: #af2037 !important;
 font-weight: bold !important;
}

.StoreBox {
    background: var(--light);
    padding: 10px;
}

.InnerList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.InnerList li p {
    font-weight: 500;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
}

.InnerList li {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 15px; */
    min-height: 40px;
}

.InnerList a {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
}

.InnerList li p {
    margin: 0;
}

.InnerList li img {
    width: 20px;
}

.InnerList {
    padding: 10px;
}

.ProdsImages {
    border-bottom: 1px solid #e5e5e4;
    position: relative;
}

.ProTitle h4 {
    font-size: 16px;
}

.ProTitle p {
    font-size: 12px;
    margin-bottom: 5px;
}

.Raview ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
}

.Raview i {
    color: var(--primary);
}

.Metas {
    padding: 10px;
}

.AddCartAndRivew {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.AddCart {
    padding: 0px 0px;
    background: #5D5F5E;
    border: none;
    color: var(--white);
    padding-left: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.AddCart span {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: var(--black);
    margin-left: 5px;
}

.InnerTimeline {
    border: 1px solid #ccc;
    position: relative;
    box-shadow: 0 0 10px #ccc;
}

.innerProducts {
    margin-bottom: 15px;
    box-shadow: 0 0 10px #ccc;
}

/* .ReviewBox {
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 160px;
} */


.fcRTop>a {
    display: none;
}

.ReviewBox {
    background: var(--light);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 632px;
    overflow: scroll;
    overflow-x: hidden;
}

.Bottomdetails {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #e56857;
    opacity: 0.8;
    padding: 10px;
}

.ReviewBox h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

.ReviewBox .Raview i {
    font-size: 25px;
}

.BuysDetails {
    background: #B21F24;
    padding: 10px;
}

.BuysDetails h3 {
    font-size: 20px;
    color: #FFDD13;
}

.BuysDetails p {
    font-size: 13px;
    color: var(--white);
    margin: 0;
}

.faq-section .mb-0>a {
    display: block;
    position: relative;
    color: var(--black);
    font-size: 16px;
    padding-left: 20px;
}

.faq-section .mb-0>a:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--primary);
}

.faq-section .mb-0>a[aria-expanded="true"]:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: var(--primary);
}

.Nearbylocality {
    background: var(--background-bgcolor);
    padding: 10px;
}

.Nearbylocality h3 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}

div#accordion .card {
    border: none;
    border-radius: 0;
}

div#accordion .card-header {
    border: none;
    padding-left: 10px;
    padding-right: 10px;
}

div#accordion .card:nth-child(odd) {
    background: var(--light);
}

div#accordion .card:nth-child(even) {
    background: var(--white);
}

.firstchoice {
    background: var(--background-bgcolor);
}

.titeFirsdt {
    color: var(--black);
}

.Innerfirstchoice img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
}

.Innerfirstchoice p {
    font-weight: 600;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}

.Innerfirstchoice {
    text-align: center;
}

/******************/

/* .section-padding {
    padding: 80px 0;
} */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}


.client-testimonial-carousel .owl-dots button {
    height: 5px;
    background: var(--primary) !important;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
    background: var(--black) !important;
    width: 30px;
}

.client-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 25px
}

.single-testimonial-item {
    position: relative;
    box-shadow: 0 0 2px var(--lightInput);
    margin: 2px;
    padding: 20px;
    /* font-style: italic; */
    /* padding-left: 85px; */
    text-align: center;
    height: 285px;
}


.single-testimonial-item h3 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0;
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
}

.single-testimonial-item a {
    color: #000 !important;
}

.single-testimonial-item a:hover {
    text-decoration: none;
}

/****************/
.InnerTimeline {
    position: relative;
}

/*.Bottomdetails {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
}
*/
.FlexBoxsBottm {
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #fff;
}

.Bottomdetails p {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.LEftDetails {
    font-size: 12px;
}

.RightSocial .SocialICons li {
    width: 20px;
    height: 20px;
    font-size: 11px;
}

.LEftDetails a {
    color: #fff;
    font-size: 12px;
}

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



.InnerMenus ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.InnerMenus li a {
    color: #fff;
    line-height: 30px;
    font-size: 16px;
}

.DropDownass .form-control {
    border-radius: 0 !important;
    background: #000;
    border: 1px solid var(--lightInput);
    color: var(--lightInput);
    display: flex;
    height: 42px;
    align-items: center;
}

.SubscribeBtn {
    width: 160px;
    height: 45px;
    background: var(--primary);
    font-size: 20px;
    font-weight: 500;
    border: 1px solid var(--white);
    text-transform: uppercase;
}

.ContactDetails ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ContactBar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ContactBar p {
    margin: 0;
    color: var(--white);
}

.ContactBar img {
    width: 15px;
}

.ContactDetails ul li {
    margin-bottom: 20px;
}

.owl-nav {
    display: none;
}

.img-fluid {
    max-width: 100%;
    height: 70px;
    /* padding-top: 12px; */
}

.main-content-body {
    min-height: calc(100vh - 333px);
}

@media only screen and (max-width: 767.9px) {
    .sticky{
        position: unset !important;
    }
    .BtnAccess {
        display: none;
    }

    .TopMenu {
        margin-right: 0px;
        gap: 5px;
    }

    .CustomH {
        height: auto;
        padding: 10px 0px;
    }

    .CustomTabSize li a {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .CustomRow {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .AddCartAndRivew {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .PriceBtns {
        width: 100%;
    }

    .AddCart {
        width: 100%;
    }

    .ProTitle p {
        font-size: 10px;
    }

    .Maps iframe {
        height: 400px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .Innerfirstchoice img {
        width: 60px;
    }

    .Innerfirstchoice p {
        font-size: 14px;
    }

    .Innerfirstchoice {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 30px;
    }

    .InnerTimeline {
        margin-bottom: 20px;
    }

    .DropDownass {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .SubscribeBox {
        margin-top: 25px;
    }

    .SubscribeBtn {
        width: 100%;
    }

    .MobileToggle {
        border: none;
        padding: 0;
    }

    .MobileToggle i {
        color: var(--dark);
        font-size: 30px;
    }
}

.Stores {
    background: #f8f8f8;
    padding: 10px;
    min-height: 280px;
    margin-top: 30px;
    box-shadow: 0 0 10px #ccc;
}

.InnerTimeline img {
    aspect-ratio: 1 / 1;
    padding: 20px;
}

.single-testimonial-item h2 {
    text-transform: capitalize;
    height: 80px !important;

}

.ProdsImages img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 15px;
    background: #fff;
}

.Category {
    position: absolute;
    top: 0;
    background: var(--background-bgcolor);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0px 10px 30px 10px;
}

.ProTitle h4 {
    text-transform: capitalize;
}

.footer-logo img {
    height: 65px !important;
    /* margin-top: 29px; */
}

.footer-section-withlove {
    background: #cd9950;
    color: #fff;
}

.offer-section-loop {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.offer-section-loop img {
    width: 100%;
}

.offer-store-detail {
    padding: 15px;
    background: #b21f24;
    color: #fff;
}

.offer-store-detail h3 {
    font-size: 20px;
    color: #FFDD13;
}

span.InlinePrice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

span.InlinePrice h4 {
    margin: 0;
}

.TopBanner {
    display: inline-block;
    width: 100%;
}

.TopBanner img {
    width: 100%;
}

.AddressStore {
    height: 90px;
}

.CustomH {
    border-top: 5px solid #cd9950;
}


    /* for color of the theme  */
/* .banner img{
vertical-align: middle; 

} */
section.TopBanner img {
    /* height: 90%; */
    object-fit: cover;
}
    
.InnerList li img {
    width: 20px;
}

.card-body ul {
    /* padding: 0px; */
    /* margin-top: -15px; */
    /* height: 100px; */
    width: 100%;
    list-style-type: none;
    line-height: 2;
    padding-left: 8px;
}

.InnerAbout {
    margin-top: 10px;
    background: #B21F24;
    padding: 15px;
}

.InnerAbout h3 {
    /* color: black; */
    /* background: #B21F24; */
    /* font-size: 16px */
    color: #FFDD13;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
   
}

.InnerAbout p {
    color: white;
    line-height: 22px;
    font-size: 14px;
    text-align: center;
}
.tags h3{
    font-size: 16px;
    color: #FFDD13;
    background:#B21F24;

}
.Nearbylocality{
    background: #B21F24;
    padding: 10px;
    color: #FFDD13;
    /* font-size:16px; */
}
h5,.tag-data{
    font-size: 14px;
}

.multi-btn
{
    display:flex;
    gap: 2px;
}
.multi-btn a{
    width: 100%;
}
.custom-three-btn a i {
    margin-right: 5px;
}

.custom-three-btn a {
    margin-right: 25px;
}

ul.gallery li {
    list-style: none;
    height: 230px;
    width: calc(33% - 10px);
}
ul.gallery li img{
    height: 100%;
    width:100%;
    object-fit:cover;
    
}

ul.gallery {
    margin: 15px 0;
    padding: 0;
    gap:20px;
    display:flex;
    flex-wrap: wrap;

}
ul.gallery-photo{
    padding:0;
    margin:0;
}
ul.gallery-photo li {
    list-style: none;
    padding: 3px;
    float: left;
    width: 25%;
}
ul.gallery-photo li:first-child {
    width: 100%;
}
ul.gallery-photo li:first-child img{
    height:200px;
}

.holder::-webkit-scrollbar {
  display: none;
}

/* Hide the images by default */
.slides {
  display: none;
  /* max-width: 1000px; */
  /* width: 100%;
  flex-shrink: 0;
  height: 100%; */
}

.slides img {
  width: 100%;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 600px) {
  .prevContainer,
  .nextContainer {
    display: none;
    visibility: hidden;
  }
}

.prevContainer,
.nextContainer {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  transform: translate(0, calc(-50% - 54px));
  height: 54px;
  width: 54px;
  cursor: pointer;
}

.prevContainer {
  margin-left: 26px;
  left: 0;
  border-radius: 30px 0 0 30px;
}

.prev {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  height: 34px;
  width: 32px;
  float: left;
  margin-left: 12px
}

.prev svg,
.next svg {
  fill: white;
}

.nextContainer {
  margin-right: 26px;
  right: 0;
  border-radius: 0 30px 30px 0;
}

.next {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  height: 34px;
  width: 32px;
  float: right;
  margin-right: 12px;
}

/* Container for image text */
.caption-container {
  text-align: left;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
  padding:5px 2px 0;
}

/* Add a transparency effect for thumbnail images */
.slide-thumbnail {
  width: 100%;
  opacity: 0.6;
  cursor: pointer;
}

.active,
.slide-thumbnail:hover {
  opacity: 1;
}



    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 80%;
      width: 100%;
    }

    .mySwiper {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
/* .btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
} */


.sticky{
	position: sticky;
    top: 0px;
    height: 100%;
}

.city-button-submit{
    color:#000 !important;
}

/* new css from index page added by #ashish */
/* for color of the theme  */
.StoreLocator {
    height: 900px;
    overflow: auto;
}
.Scroller {
    height: 1300px;
    overflow: auto;
}
.card-body ul {
    /* padding: 0px; */
    /* margin-top: -15px; */
    /* height: 100px; */
    width: 100%;
    list-style-type: none;
    line-height: 2;
    padding-left: 8px;
}
.AboutBg
{
    color: white;
}
.ser
{
    width: 70px;
    height: 50px;
}

.SearchBar button {
    width: 500px;
    height: 50px;
    /* background: var(--primary); */
    background: #c4a237;
    margin-left: 10px;
    border: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    /* color: #fff; */
    /* color:green; */
    /* background-color: #c4a237; */
    background-color: #c4a237;
    margin-left: 360px;
    width: 140px;
    height:50px;
    border: none;

    /* border-color: #0062cc; */
}
.lar_lab
{
    font-size: 20px;
}
.red-text{
    color: red;
}
.multi-btn
{
    display:flex;
    gap: 2px;
}
.multi-btn a{
    width: 100%;
}
.ordr
{
   background:#af2037;
   color: white;
}
.mapdatail
{
    background:#c4a237;
    color: white;
}

#live_map {
    height: 500px;
    width: 100%;
}
.load-sectionhide{
    display: none;
}
#loadMore_sectionshow {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background: #b21f24;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.scroll-str{
    height: 445px;
    overflow-y: scroll;
}
a.paginate-store.active {
    background: #b21f24;
    padding: 5px;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
a.paginate-store {
    background: #c4a237;
    padding: 5px;
    color: #fff;
    margin: 1px;
}
.Stores{
    margin-top:15px;
}


/***********/


    /* for color of the theme  */
/* .banner img{
vertical-align: middle; 

} */
    
.InnerList li img {
    width: 20px;
}


.StoreLocator {
    height: auto;
    overflow: auto;
}
.Scroller {
    height: auto;
    overflow: auto;
}
.card-body ul {
    /* padding: 0px; */
    /* margin-top: -15px; */
    /* height: 100px; */
    width: 100%;
    list-style-type: none;
    line-height: 2;
    padding-left: 8px;
}

.InnerAbout {
    margin-top: 10px;
    background: #B21F24;
    padding: 15px;
}

.InnerAbout h3 {
    /* color: black; */
    /* background: #B21F24; */
    /* font-size: 16px */
    color: #FFDD13;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
   
}

.InnerAbout p {
    color: white;
    line-height: 22px;
    font-size: 14px;
    text-align: center;
}
.tags h3{
    font-size: 16px;
    color: #FFDD13;
    background:#B21F24;

}
.Nearbylocality{
    background: #B21F24;
    padding: 10px;
    color: #FFDD13;
    /* font-size:16px; */
}
h5,.tag-data{
    font-size: 14px;
}

.multi-btn
{
    display:flex;
    gap: 2px;
}
.multi-btn a{
    width: 100%;
}
.custom-three-btn a i {
    margin-right: 5px;
}

.custom-three-btn a {
    margin-right: 25px;
}

.swiper {
    width: 100%;
    height: auto;
    margin-bottom : 25px;
 }

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #888 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,.swiper-button-prev:after {
    
    font-size: 14px !important;
    font-weight: bold;
    
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto;
    background: #b21f24;
    color: #ffdd13 !important;
}
span.swiper-pagination-bullet {
    background: #b21f24;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ffdd13;
}


.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto;
    background: #b21f24;
    color: #ffdd13 !important;
}

.custom-three-btn a.btn.mapdatail {
    margin: 0;
}   
.single-testimonial-item h5 {
    padding: 0;
    margin: 2px;
}
.ReviewBox{
    height: 675px;
}

/* .btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
} */
.sectionOne,.sectionSecond {
    background-color: #ddd;
    padding: 20px 20px 26px 24px;
    border-radius:5px;
    margin-top:3px;
}
.sectionOne ul, .Sec3 ul{
   list-style-type:none;
   display:flex;
   padding:0;
   margin-bottom:5px;

}
.sectionOne ul li span,.Sec3 ul li span{
    color:rgb(184, 45, 45);
    font-size:20px;
    font-weight:bold;
}
.sectionOne button {
    padding: 8px 20px;
    background-color: rgb(184, 45, 45);
    color: #ffffff;
    border-radius: 5px;
    border: none;
    font-weight: bold;
}
.sec1{
    display: flex;
    gap: 20px;
}
.Sec2{
    display:flex;
    gap:5px;
}
.Sec2 span {
    font-size: 15px;
    color: rgb(184, 45, 45);
}
.Sec2 h5 {
    font-weight: bold;
    margin: 0;
}
.sectionSecond p,.Sec3 p{
    font-size: 13px;
}
.sectionSecond a {
    color: rgb(184, 45, 45);
}
.sectionSecond{
    padding-bottom:8px;
}
.Sec3{
    background-color: #ddd;
    border-radius:10px;
}
.Sec3 p{
    font-size: 15px;
    margin-top:-10px;
}
.Sec3 b {
    font-weight: normal;
    cursor: pointer;
    color:#aaa;
}
.Sec3 b:hover {
    text-decoration: underline;
}
.more {
    display: none;
}

.ProTitle a {
    color: rgb(184, 45, 45);
}

.ProTitle a:hover {
    text-decoration: none;
    cursor: pointer;
}

.Category a:hover {
    text-decoration: none;
    cursor: pointer;
}