@charset "UTF-8";

body{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
    color: #191414;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

a{
    color: #191414;
    text-decoration: none;
}

.sticky-top{
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 5%);
}

.header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 62px;
}

.header-contact{
    display: flex;
    gap: 30px;
}

.header-contact-icon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact i{
    font-size: 20px;
    color: #ED3237;
}

.header-socialmedia a{
    border-left: 1px solid #F1F1F1;
    padding: 20px 30px;
    font-size: 16px;
}

.header-socialmedia a:hover{
    color: #ED3237;
}

.header-socialmedia a:last-child{
    border-right: 1px solid #F1F1F1;
}

.divider{
    height: 1px;
    background-color: #F1F1F1;
}

.heading-with-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar{
    margin: 0px;
    height: 107px;
}

.nav-link{
    color: #191414;
    font-weight: 600;
    padding: 0px 20px !important;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #ED3237;
}

.navbar-collapse {
    flex-grow: 0;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ED3237;
    --bs-btn-border-color: #ED3237;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c31519;
    --bs-btn-hover-border-color: #c31519;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #c31519;
    --bs-btn-active-border-color: #c31519;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ED3237;
    --bs-btn-disabled-border-color: #ED3237;
    padding:12px 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-primary-outline{
    border:1px solid #fff;
    --bs-btn-color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary-outline:hover{
    border:1px solid #fff;
    color: #ED3237;
    background-color: #fff;
}

.btn-primary-o{
    text-transform: unset;
    --bs-btn-bg: #ED3237;
    --bs-btn-border-color: #ED3237;
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: #c31519;
    --bs-btn-active-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    padding:12px 30px;
    font-weight: 400;
}

.btn{
    border-radius: 4px !important;
}

figure {
    margin: 0;
}

/* Hero Slider */
.hero-slider {
  width: 100%;  
  height: calc(100vh - 169px);
  display: flex;
  position: relative;
  z-index: 0;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

.slide-title{
    font-size: 16px;
    text-transform: uppercase;
    color: #7D7874;
}

.slide-content-box{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.heading{
    font-size: 42px;
    font-family: "Lora", serif;
    font-weight: 500;
    line-height: 54px;
}

.semi-bold{
    font-weight: 500;
}

.bold{
    font-weight: 600;
}

.mt-75{
    margin-top: 75px;
}

.py-75{
    padding-top: 75px;
    padding-bottom: 75px;
}

.banner-divider{
    background-color: #BCBDBC;
    height: 1px;
    margin: 20px 0;
}

.aboutbanner-content{
    margin:10px 10px 10px 15px;
}

.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.9)); */
}

/* Slide Text */
.hero-style { 
  transition: all 0.4s ease;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: transparent;
  text-align: center;
  line-height: 53px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-prev:before,
.hero-slider .swiper-button-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #f0f0f0;
  display: inline-block;
}

.hero-slider .swiper-button-prev:before {
  content: "\f060";
}

.hero-slider .swiper-button-next:before {
  content: "\f061";
}

.banner-content-bg{
    background-color: #ffffffd9;
    border-radius: 0px 8px 8px 0 ;
    border-left: 9px solid #ED3237;
    width: 52%;
    padding:35px 45px 35px 25px;
}

.banner-content-bg-next{
    background-color: #ffffffd9;
    border-radius: 0px 8px 8px 0 ;
    border-left: 9px solid #ED3237;
    width: 72%;
    padding:35px 45px 35px 25px;
}

.outline{
    border: 1px solid #A5A3A1;
    padding: 4px 12px;
    border-radius: 4px;
}

.sub-heading{
    display: flex;
    align-items: center;
    gap: 12px;
}

.sub-heading i{
    font-size: 27px;
    color: #ED3237;
}

.bg-primary{
    background-color: #ED3237 !important;
    color: #fff;
    border-radius: 4px;
    padding: 15px 20px 10px 20px;
}

.bg-primary i{
    color: #fff;
}

.about_banner {
  background-image: url("../images/aboutbanner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px 0;
}

.aboutbanner-bg{
    background-color: #ffffffd9;
    border-left: 9px solid #ED3237;
    padding-left: 15px;
    border-radius: 0px 8px 8px 0px;
    display: flex;
    align-items: center;
}

.branches{
    background-color: #F6F6F6;
}

.store-search{
    background-color: #fff;
    padding: 15px 20px;
}

.store-heading{
    font-size: 16px;
    font-weight: 700;
}

.store-heading span{
    font-size: 16px;
    font-weight: 500;
    color: #7D7874;
}

.branch-heading{
    text-transform: uppercase;
    background-color: #ED3237;
    text-align: center;
    padding: 8px;
    color: #fff;
}

.branch-search .form-control{
    border:1px solid #DCDCDC !important;
    border-radius: 4px !important;
    font-size: 13px;
    height: 40px;
    color: #7D7874 !important;
    padding-left: 40px;
}

.seach-ico{
    position: absolute;
    font-size: 20px;
    padding: 10px;
}

.accordion-button {
    padding: 10px 0px !important;
    font-size: 15px !important;
    color: #191414 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    box-shadow: none !important;
}

.branch-location ul{
    margin: 0px;
    padding: 0px;
}

.branch-location li{
    list-style-type: none;
    padding-bottom: 8px;
}

.branch-location li.active{
    color: #ED3237;
    font-weight: 600;
}

.branch-location li::before{
    content: url("../images/rightarrow.png");
    display: inline-block;
    margin-right: 10px;
    color: #ED3237;
    width: 10px;
    height: 6px;
}

.accordion-body {
    padding: 0px 0 0 10px;
    max-height: 276px;
    overflow: auto;
    scrollbar-color: #ED3237 #fff;
    min-height: 200px;
    scrollbar-width: thin;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.accordion-body::-webkit-scrollbar {
    width: 8px;
}

.accordion-body::-webkit-scrollbar-track {
    background: #fff;
}

.accordion-body::-webkit-scrollbar-thumb {
    background-color: #ED3237;
    border-radius: 10px;
    border: 2px solid #fff; /* space around thumb */
}

.branches-pattern{
    position: absolute;
    right: 0;
    z-index: -1;
}

.fa-location-crosshairs{
    font-size: 20px;
    margin-right: 10px;
}

.map-section{
    position: relative;
}

.button-neareststore{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.storename{
    position: absolute;
    bottom: 20px;
    z-index: 1;
    background-color: #fff;
    text-align: center;
    width: 50%;
    border-radius: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.mapstore-heading{
    background-color: #ED3237;
    color: #fff;
    padding: 12px;
    font-weight: 500;
}

.store-contact{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-weight: 500;
}

.store-contact i{
    color: #ED3237;
}

.dept-name{
    height: 80px;
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 1px 0 rgb(237 49 55 / 32%);
    margin-top: 22px;
    text-align: center;
    padding: 0 5px;
}

.dept-name:hover{
    box-shadow: 0 1px 1px 0 rgb(237 49 55);
}

.aboutus{
    background-color: #fff;
}

.contactus{
    background-color: #F6F6F6 !important;
    background: url("../images/contact.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.department{
    background: url("../images/departmenttexture.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.contact-form{
    background-color: #fff;
    border-left: 9px solid #ED3237;
    padding: 35px 45px 35px 25px;
    border-radius: 0px 8px 8px 0;
}

.contact-form .form-control{
    border-radius: 0px !important;
    font-size: 14px;
    height: 40px;
    color: #7D7874 !important;
    text-transform: uppercase;
    padding-left: 0px;
    border: none !important;
    border-bottom: 1px solid #DCDCDC !important;
}

.contact-form .form-control.no-height{
    height: unset;
}

.copy-write{
    text-align: right;
    font-size: 14px;
}

.align-item-center{
    align-items: center;
}

.zoom-in {
    transition: transform 0.9s ease; /* Adjust the duration as needed */
}

.zoom-in:hover {
    transform: scale(1.10);
}

.move:hover {
    animation: moveAround 2s infinite ease-in-out;
}

.alias {
    transition: transform 0.9s ease; /* Adjust the duration as needed */
}

.alias:hover {
    transform: scale(1.05) skew(-5deg);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.05); }
    25% { transform: translateX(-5px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.05); }
}

@keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .heading {
    font-size: 20px !important;
    line-height: 28px !important;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    body{
    font-size: 14px;
    }
    .bg-primary {
    border-radius: 0px;
    }
    .navbar-toggler {
    font-size: 14px;
    }
    .header-contact i {
    font-size: 17px;
    }
    .aboutbanner-bg {
    padding-left: 10px;
    }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {
    .header-top {
    min-height: unset;
    padding: 13px 0;
    align-items: start;
    }
    .heading {
    font-size: 24px;
    line-height: 32px;
    }
    .slide-title {
    font-size: 14px;
    }
    .header-contact {
    gap: 8px;
    flex-direction: column;
    }
    .header-socialmedia a {
    border-left: unset;
    padding: 0px 0 0 7px;
    }
    .header-socialmedia a:first-child {
        padding-left: unset;
    }
    .header-socialmedia a:last-child{
    border-right: unset;
    }
    .header-contact-icon {
    gap: 8px;
    }
    .btn-primary {
    padding: 7px 10px;
    font-size: .867rem;
    }
    .navbar {
        height: auto;
    }
    .navbar-toggler {
    padding: 5px 7px;
    font-size: 15px;
    color: #191414;
    border: 1px solid #ED3237;
    border-radius: 4px;
    margin-left: 5px;
    }
    .mt-75{
    margin-top: 35px;
    }
    .mt-35{
    margin-top: 35px;
    }
    .py-75{
    padding-top: 35px;
    padding-bottom: 35px;
    }
    .storename {
    width: 90%;
    }
    .department {
    background-position: center;
    }
    .copy-write{
    text-align: unset;
    margin-top: 14px;
    }
    .navbar-collapse {
    position: absolute;
    background: #fff;
    width: 100%;
    top: 86px;
    z-index: 1;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0px 0px 4px 4px;
    }
    .nav-item {
        padding: 10px 0px;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .header-email{
        display: none;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {
    .navbar-brand img{
        width: 165px;
    }
    .banner-content-bg{
    width: 100%;
    }
    .banner-content-bg-next{
        width: 100%;
    }
    .contactus{
    background-size: cover;
    }
    .contact-form {
    background-color: #ffffffd9;
    }
    .contact-form .form-control {
    background-color: transparent;
    }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1400px) {

}