@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
/* Responsive */
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "sans-serif";
  background: #EEEEEE !important;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", "sans-serif" !important;
}

h1, h2 {
  font-size: 4em !important;
  font-weight: 700 !important;
}

.Header {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
}

.Header.Header-scrolled {
  padding: 15px 0;
  -webkit-box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
          box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.Header .logo {
  line-height: 0;
}

.Header .logo img {
  max-height: 60px;
  margin-right: 10px;
}

/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
  z-index: 22;
}

.head-nav {
  margin-top: 20px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  z-index: 23;
}

.navbar li {
  position: relative;
  list-style-type: none;
}

.navbar a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500 !important;
  color: #11468f !important;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #bf2424;
}

.Header .login-btn {
  background: -webkit-gradient(linear, left top, right top, from(#bf2424), to(#850000));
  background: linear-gradient(90deg, #bf2424 0%, #850000 100%);
  padding: 8px 28px;
  margin-left: 10px;
  border: none;
  border-radius: 4px;
  color: #fff;
  z-index: 26;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #11468f), color-stop(50%, #bf2424));
  background: linear-gradient(to right, #11468f 50%, #bf2424 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.Header .login-btn:hover {
  color: #fff;
  background-position: left bottom;
}

button.contact-btn {
  background: transparent;
  color: #11468f;
  border: none;
  padding: 8px 26px;
  border-radius: 4px;
  position: relative;
  font-size: 16px;
  overflow: hidden;
}

button.contact-btn i.fa {
  font-size: 13px;
  line-height: 1;
  padding-left: 10px;
  width: 23px;
  display: inline-block;
  text-align: left;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

button.contact-btn span.activeSpan {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #11468f, #1f61bb);
  background: -moz-linear-gradient(45deg, #11468f, #1f61bb);
  border-radius: 4px;
  color: #ffffff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  left: calc(-100% + -5px);
  top: -2px;
  z-index: 1;
}

button.contact-btn::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid #11468f;
  position: absolute;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  left: 0;
  top: 0;
}

button.contact-btn:hover i.fa {
  padding-left: 4px;
}

button.contact-btn:hover span.activeSpan {
  left: -2px;
}

button.contact-btn:hover::after {
  border-color: transparent !important;
}

.Header .login-btn:hover i {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: -webkit-transform 330ms ease-in-out;
  transition: -webkit-transform 330ms ease-in-out;
  transition: transform 330ms ease-in-out;
  transition: transform 330ms ease-in-out, -webkit-transform 330ms ease-in-out;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(49, 47, 47, 0.15);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 134, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 134, 0.37);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.205);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar .dropdown > ul > li::before {
  content: "";
  background: #11468f;
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.navbar .dropdown > ul > li:hover::before {
  width: 100%;
  z-index: -99;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 8px 10px;
  font-size: 13px;
  text-transform: none;
  font-weight: 400;
  z-index: 19;
}

.navbar .dropdown ul a :hover {
  color: #fff !important;
}

.navbar .dropdown ul a i {
  font-size: 11px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #f0f0f0 !important;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
    * Mobile Navigation 
    */
.offcanvas-end {
  width: 255px !important;
  height: 97vh;
}

.offcanvas-body {
  background-color: #000931;
}

.offcanvas-body .nav-link {
  color: white !important;
}

.btn-mobile i {
  color: #11468f;
}

.offcanvas-header {
  background: #000931;
  color: white;
}

.offcanvas-header .dropdown-profile h3 {
  color: #ffffff;
}

.offcanvas-header .location-menu span {
  color: white;
}

.nav-item {
  color: white !important;
}

.nav-link:focus, .nav-link:hover {
  color: #bf2424 !important;
}

.btn-close {
  color: white;
  background-color: white;
}

.nav-link img {
  margin-right: 20px;
}

.container-social-menu {
  background: #000931;
}

.container-social-menu .social-icons {
  color: white;
}

.container-social-menu .social-icons i {
  margin: 15px;
}

.links-menu a {
  color: white !important;
  margin: 10px;
  font-size: 11px;
}

@media (max-width: 1080px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .contact-buttons {
        display: none;
    }
}

@media (min-width: 1081px) {
    .btn-mobile {
        display: none !important;
    }
}

.cta-close-btn {
  cursor: pointer;
}

section.storeSec {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  max-width: 100vw;
}

section.storeSec .mapCon {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

section.storeSec .headerCon {
  background-color: rgba(73, 73, 73, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-bottom: 15px;
  margin: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1080px) {
  section.storeSec .headerCon {
    background: transparent;
    margin: 0;
    padding-bottom: 0px;
  }
}

section.storeSec .storeListCon {
  display: none;
  max-width: 480px;
  width: 90%;
  height: calc(100vh - 170px);
  margin-top: 3em;
  overflow: scroll;
  margin-left: auto;
  margin-right: 40px;
  background-color: rgba(75, 74, 74, 0.15);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 15px;
}

@media (max-width: 812px) {
  section.storeSec .storeListCon {
    margin-right: auto;
  }
}

section.storeSec .storeListCon .listTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

section.storeSec .storeListCon .listTop .btn {
  font-size: 0.7em;
}

section.storeSec .storeListCon .listTop button.settings {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 2px 10px;
  font-size: 20px;
}

section.storeSec .storeListCon .searchBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

section.storeSec .storeListCon .searchBar input {
  border: 1px solid #11468f;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 45px;
  padding: 5px 15px;
}

section.storeSec .storeListCon .searchBar button {
  padding: 0.5em;
  background: #11468f;
  color: #fff;
  border: none;
  outline: none;
  width: 70px;
}

section.storeSec .storeListCon .listItemsCon {
  max-height: calc(100% - 110px);
  overflow: auto;
}

section.storeSec .storeListCon .listItemsCon .storeItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 15px 15px 15px 25px;
  background: #fff;
  border-top: 1px solid;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

section.storeSec .storeListCon .listItemsCon .storeItem::before {
  content: '';
  position: absolute;
  z-index: 0;
  background: #DA1212;
  width: 15px;
  top: -1px;
  left: 0;
  height: calc(100% + 2px);
}

section.storeSec .storeListCon .listItemsCon .storeItem .titleCon {
  width: 200px;
}

section.storeSec .storeListCon .listItemsCon .storeItem .titleCon h6 {
  font-size: 18px;
}

section.storeSec .storeListCon .listItemsCon .storeItem .titleCon p {
  font-size: 12px;
  margin-bottom: 0;
}

section.storeSec .storeListCon .listItemsCon .storeItem .titleCon p i.fa {
  color: #11468f;
}

section.storeSec .storeListCon .listItemsCon .storeItem .radiusCon {
  font-size: 12px;
  margin-right: 7px;
}

section.storeSec .storeListCon .listItemsCon .storeItem .radiusCon i.fa {
  color: #11468f;
}

section.storeSec .storeListCon .listItemsCon .storeItem .indication {
  font-size: 12px;
}

section.storeSec .storeListCon .listItemsCon .storeItem .indication i.fa {
  color: #11468f;
}

section.storeSec .storeListCon .listItemsCon::-webkit-scrollbar {
  width: 6px;
}

section.storeSec .storeListCon .listItemsCon::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px grey;
          box-shadow: inset 0 0 2px grey;
  border-radius: 5px;
}

section.storeSec .storeListCon .listItemsCon::-webkit-scrollbar-thumb {
  background: #11468F;
  border-radius: 5px;
}

section.storeSec .storeListCon .listItemsCon::-webkit-scrollbar-thumb:hover {
  background: #11468F;
}

section.storeSec .storeListCon .listItemsCon:nth-child(2n) .storeItem::before {
  content: '';
  position: absolute;
  z-index: 0;
  background: #11468f;
  width: 15px;
  top: -1px;
  left: 0;
  height: calc(100% + 2px);
}

footer {
  padding-bottom: 100px;
  padding-top: 150px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #000931;
  position: relative;
}

footer .blankDot {
  position: absolute;
  background: #EEEEEE;
  height: 65px;
  width: 110px;
  top: -2px;
  left: 245px;
}

footer .blankDot2 {
  position: absolute;
  background: #EEEEEE;
  height: 55px;
  width: 60px;
  top: -2px;
  right: 245px;
}

footer .logo {
  margin-bottom: 40px;
}

footer .container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

footer .container .sec h3 {
  position: relative;
  color: #FFF;
  font-weight: 300;
  margin-bottom: 15px;
}

.sec.f-news {
  margin-top: 15px;
}

.sec h3 {
  text-transform: uppercase;
}

.sec ul {
  margin: 0px !important;
  padding: 0px !important;
}

@media (max-width: 767.9px) {
  .sec {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}

footer .container .sec p {
  color: #FFF;
}

@media (max-width: 1080px) {
  .f-links {
    margin-top: 110px !important;
  }
}

@media (max-width: 767.9px) {
  .f-links {
    text-align: center;
  }
}

.f-links,
.f-links2 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 767.9px) {
  .f-links,
  .f-links2 {
    text-align: center;
  }
}

.f-links li,
.f-links2 li {
  list-style: none;
}

.f-links h3,
.f-links2 h3 {
  color: #FFF;
  text-transform: uppercase;
}

.f-links a,
.f-links2 a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.f-links a:hover,
.f-links2 a:hover {
  color: #DA1212;
}

.footer-info {
  position: relative;
}

.footer-info li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 1fr;
      grid-template-columns: 30px 1fr;
  margin-bottom: 16px;
}

.footer-info li span:nth-child(1) {
  color: #FFF;
  font-size: 20px;
}

.footer-info li span {
  color: #FFF;
}

.footer-info a {
  color: #FFF;
  text-decoration: none;
}

.border-rad {
  border: 0;
  border-radius: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: #fff !important;
  background: -webkit-gradient(linear, left top, right top, from(#bf2424), to(#850000));
  background: linear-gradient(90deg, #bf2424 0%, #850000 100%);
}

.copyrightline {
  width: 100%;
  background: #DA1212;
  padding: 8px 100px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonial-area .section-heading h2 {
    font-size: 30px;
  }
  .client-comment {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
  }
  .client-single.active {
    width: 100%;
  }
  .client-single:not(.active) {
    -webkit-transform: scale(0.55);
    transform: scale(0.35);
  }
  .client-single.position-3,
  .client-single.position-7 {
    -webkit-transform: scale(0.3) !important;
    transform: scale(0.3) !important;
  }
  .client-single.active .client-img img {
    max-width: 100px;
  }
  .client-single.active .client-img::before {
    padding: 5px;
    width: 108px;
    height: 108px;
    top: -4px;
    left: 6px;
  }
  .client-single.active .client-img {
    width: 100px;
    height: 100px;
  }
  .testi-wrap {
    height: 580px;
  }
  #testimonial-area {
    padding: 100px 0 0;
  }
  footer {
    padding: 40px;
  }
  footer .container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .container-md-three .feature-msg {
    width: 100%;
  }
  .container-md-three .feature-msg h1 {
    margin-top: 180px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  footer .container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (min-width: 360px) and (max-width: 479px) {
  footer .container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
  footer .container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    overflow: hidden;
  }
}
/*# sourceMappingURL=store__locator.css.map */
