* {
  box-sizing: border-box;
}

input, textarea, button, select {
  outline-style: none;
  box-shadow: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

p {
  line-height: 21px;
  color: #797d8a;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: #2d3954;
}

a {
  text-decoration: none;
  color: #03989e;
}
a:hover {
  color: #f40c43;
}

body {
  background-color: #f7f9fc;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.text-success {
  color: rgb(19, 179, 19);
}

.text-danger {
  color: #f40c43;
}

.relative {
  position: relative;
}

img[data-action=zoom] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.zoom-img, .zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

img.zoom-img {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}

.zoom-overlay {
  z-index: 420;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}

.zoom-overlay-open, .zoom-overlay-transitioning {
  cursor: default;
}

@media screen and (max-width: 800px) {
  .d-none-800 {
    display: none;
  }
}

.one-line {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.header {
  width: 100%;
  height: 60px;
  background-color: #fff;
}
.header nav {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header nav .logo {
  margin: 3px 0;
}
.header nav .menu {
  display: flex;
  gap: 16px;
}
.header nav .menu .menu-link-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-decoration: none;
  line-height: 40px;
  padding: 0 14px;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: transform 0.1s ease-in-out;
}
.header nav .menu .menu-link-btn i {
  font-size: 18px;
  margin-right: 14px;
}
.header nav .menu .menu-link-btn:hover {
  transform: scale(1.01);
}
@media screen and (max-width: 800px) {
  .header nav .menu .menu-link-btn {
    display: none;
  }
}
.header nav .menu .menu-mobile-toggle {
  display: none;
}
@media screen and (max-width: 800px) {
  .header nav .menu .menu-mobile-toggle {
    display: block;
  }
}
.header nav .menu-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #d3d3d3;
  z-index: 9999;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  padding: 30px;
}
.header nav .menu-mobile a {
  background-color: transparent;
  font-weight: 500;
  font-size: 20px;
  color: #000 !important;
}
.header nav .menu-mobile a i {
  margin-right: 12px;
}

.btn {
  line-height: 40px;
  display: inline-block;
  padding: 0 18px;
  text-decoration: none;
  border-radius: 0.33rem;
  transition: transform 0.1s ease-in-out;
  text-align: center;
  border: 0;
}
.btn i {
  margin-right: 18px;
}
.btn:hover {
  cursor: pointer;
  transform: scale(1.02);
  color: #fff;
}

.btn-lg {
  line-height: 60px;
  padding: 0 36px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-link {
  color: #2d3954;
  background-color: transparent;
}
.btn-link:hover {
  background-color: #d3d3d3;
  color: #2d3954;
}

.btn-primary {
  color: #fff !important;
  background-color: #03989e;
}

.btn-danger {
  color: #fff !important;
  background-color: #f40c43;
}

.btn-secondary {
  color: #6b6b6b;
  background-color: rgb(223, 223, 223);
}
.btn-secondary:hover {
  color: #555555;
}

.hero {
  background-color: #e0f2f3;
  background-image: url("/assets/img/hero/header-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 20p;
}
.hero .hero-filter {
  background-color: rgba(0, 0, 0, 0.55);
}
.hero .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 500px;
  justify-content: center;
}
.hero .hero-container .hero-content {
  text-align: center;
}
.hero .hero-container .hero-content h1 {
  color: #fff;
  max-width: 700px;
  line-height: 46px;
  font-size: 2.2rem;
}
@media screen and (max-width: 800px) {
  .hero .hero-container .hero-content h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-container .hero-content h1 {
    font-size: 1.4rem;
  }
}
.hero .hero-form-outer {
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0.33rem;
}
.hero .hero-form-inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: 0.33rem;
  gap: 10px;
}
.hero .hero-form-input:first-child {
  border-right: 1px solid #dfdfdf;
}
.hero .hero-form-input select {
  height: 50px;
  border: 0;
  width: 280px;
  background-color: transparent;
  padding-left: 12px;
  color: #565656;
  font-size: 18px;
  line-height: 50px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .hero .hero-form-input select {
    width: 200px;
  }
}
.hero .hero-form-submit button {
  border: 0;
  height: 50px;
  border-radius: 0.33rem;
  margin: 10px;
  width: 125px;
  transition: all 0.2s ease-in-out;
  font-size: 18px;
  font-weight: 500;
}
.hero .hero-form-submit button:hover {
  cursor: pointer;
  margin: 7px;
  width: 131px;
  height: 56px;
}
@media screen and (max-width: 480px) {
  .hero .hero-form-submit button {
    width: 100px;
  }
}

.card {
  width: 100%;
  background-color: #fff;
  border-radius: 0.33rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.card .card-header {
  padding: 10px 20px;
  border-bottom: 1px solid #e7eff9;
}
.card .card-header h1, .card .card-header h2, .card .card-header h3 {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2d3954;
}
.card .card-header i {
  color: #797d8a;
}
.card .card-body {
  padding: 20px;
}
.card .card-body .card-body-title {
  border-bottom: 1px solid #e7eff9;
  margin-bottom: 1rem;
}
.card .card-body .card-body-title h2, .card .card-body .card-body-title h3, .card .card-body .card-body-title h4 {
  margin: 0 0 1rem 0;
  font-size: 20px;
  font-weight: 600;
}

.features {
  text-align: center;
}

.page-subtitle {
  text-align: center;
}
.page-subtitle h2 {
  line-height: 28px;
  color: #2d3954;
}
@media screen and (max-width: 1000px) {
  .page-subtitle h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 800px) {
  .page-subtitle h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 700px) {
  .page-subtitle h2 {
    font-size: 20px;
  }
}
.page-subtitle span {
  text-transform: uppercase;
  font-weight: 600;
  color: #797d8a;
}
@media screen and (max-width: 800px) {
  .page-subtitle span {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .page-subtitle span {
    font-size: 16px;
  }
}
.page-subtitle.page-subtitle-left {
  text-align: left !important;
}

.services {
  padding-top: 100px;
  background-color: #fff;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}
.services .container .services-image img {
  width: 100%;
  border-radius: 0.33rem;
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.3);
}
.services .container .services-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}
.services .container .services-content-title h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: #03989e;
}
.services .container .services-content-subtitle h3 {
  font-size: 34px;
  font-weight: 500;
  margin: 14px 0 33px;
  line-height: 43px;
}
.services .container .services-content-actions a {
  background-color: #03989e;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  line-height: 50px;
  display: inline-block;
  padding: 0 40px;
  border-radius: 0.33rem;
  margin-top: 32px;
}
@media (max-width: 800px) {
  .services .container {
    grid-template-columns: 1fr;
  }
}

.cta {
  padding: 40px 0;
  text-align: center;
  background-color: #011640;
}
.cta h2 {
  color: #03989e;
}
.cta p {
  color: #f7f9fc;
}

.locations p {
  margin: 6px;
}
.locations p a {
  text-decoration: none;
  color: #03989e;
  font-weight: 500;
}
.locations p a:hover {
  color: #f40c43;
}

.brands {
  background-color: #fff;
  text-align: center;
}
.brands .brands-list {
  margin-top: 40px;
}
.brands .brands-list .brand-item .brand-item-image a {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands .brands-list .brand-item .brand-item-image a img {
  width: 80px;
}
.brands .brands-list .brand-item .brand-item-image a img:hover {
  transform: scale(1.03);
}
.brands .brands-list .brand-item .brand-item-title p a {
  text-decoration: none;
  color: #03989e;
  font-weight: 500;
}
.brands .brands-list .brand-item .brand-item-title p a:hover {
  color: #f40c43;
}

footer {
  background-color: #fff;
  padding-top: 60px;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 70px;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 40px;
}
footer .footer-top .footer-logo img {
  width: 100%;
}
footer .footer-top .footer-links span {
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin: 12px 0 16px;
  color: #797d8a;
}
footer .footer-top .footer-links a {
  display: block;
  text-decoration: none;
  color: #454545;
  margin-bottom: 8px;
}
footer .footer-top .footer-links a:hover {
  color: #03989e;
}
footer .footer-top .footer-links a i {
  display: inline-block;
  width: 20px;
  text-align: center;
}
footer .footer-bottom {
  padding: 14px 0 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom .footer-copy span {
  font-size: 14px;
  color: #555555;
}
footer .footer-bottom .footer-copy span .fa-heart {
  color: #f44336;
}
footer .footer-bottom .footer-copy span a {
  text-decoration: none;
  color: #03989e;
}
footer .footer-bottom .footer-payments img {
  height: 46px;
}

@media screen and (max-width: 920px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .footer-top .footer-logo {
    display: none !important;
  }
}
@media screen and (max-width: 719px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
  }
}
.page-header {
  background-color: #2d3954;
}
.page-header .page-header-content {
  padding: 28px 0;
}
.page-header .page-header-content .page-header-breadcumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.page-header .page-header-content .page-header-breadcumbs::-webkit-scrollbar {
  display: none;
}
.page-header .page-header-content .page-header-breadcumbs a {
  color: #d0d7e7;
  text-decoration: none;
  line-height: 20px;
}
.page-header .page-header-content .page-header-breadcumbs a:hover {
  color: #fff;
}
.page-header .page-header-content .page-header-breadcumbs span {
  margin: 0 8px;
  font-size: 20px;
  color: #797d8a;
  line-height: 10px;
}
.page-header .page-header-content .page-header-breadcumbs p {
  margin: 0;
  color: #5eb3b7;
  line-height: 10px;
}
.page-header .page-header-content .page-header-logo {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.33);
  padding: 5px;
  border-radius: 0.33rem;
  margin-top: 80px;
}
.page-header .page-header-content .page-header-logo img {
  height: 60px;
  max-width: 100%;
  background-color: #fff;
  padding: 5px;
  border-radius: 0.33rem;
  float: left;
}
.page-header .page-header-content .page-header-title h1 {
  color: #f7f9fc;
}
@media screen and (max-width: 1000px) {
  .page-header .page-header-content .page-header-title h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 700px) {
  .page-header .page-header-content .page-header-title h1 {
    font-size: 22px;
  }
}
.page-header .header-gradient-bg-img {
  position: absolute;
  height: 100%;
  width: 50vw;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header .header-gradient-bg-gr {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  background: rgb(45, 57, 84);
  background: linear-gradient(270deg, rgba(45, 57, 84, 0.2582282913) 0%, rgb(45, 57, 84) 50%, rgb(45, 57, 84) 100%);
}

.filters-bar {
  height: 60px;
  background-color: #e0f2f3;
  border-bottom: 1px solid #b7d8da;
  white-space: nowrap;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.filters-bar::-webkit-scrollbar {
  display: none;
}
.filters-bar .filter-items {
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border-left: 1px solid #b7d8da;
}
.filters-bar .filter-items .filter-item {
  border-right: 1px solid #b7d8da;
}
.filters-bar .filter-items .filter-item select {
  height: 60px;
  padding: 0 20px;
  border: 0;
  background-color: transparent;
  font-size: 18px;
  cursor: pointer;
  font-weight: 500;
  min-width: 200px;
  color: #03989e;
}
.filters-bar .filter-items .filter-item select:hover {
  border-bottom: 3px solid #03989e;
}

.listing {
  background-color: #f7f9fc;
  padding: 60px 0;
}
.listing .listing-item {
  display: grid;
  grid-template-columns: 300px auto;
  grid-template-rows: 200px;
  background-color: #fff;
  border-radius: 0.4rem;
  margin-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media screen and (max-width: 719px) {
  .listing .listing-item {
    grid-template-columns: 1fr;
  }
}
.listing .listing-item .listing-item-img {
  cursor: pointer;
  position: relative;
}
.listing .listing-item .listing-item-img .listing-item-img-wallpaper,
.listing .listing-item .listing-item-img .listing-item-img-shadow,
.listing .listing-item .listing-item-img .listing-item-img-logo {
  position: absolute;
  border-radius: 0.33rem;
}
.listing .listing-item .listing-item-img .listing-item-img-wallpaper,
.listing .listing-item .listing-item-img .listing-item-img-shadow {
  width: 300px;
  height: 200px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 719px) {
  .listing .listing-item .listing-item-img .listing-item-img-wallpaper,
  .listing .listing-item .listing-item-img .listing-item-img-shadow {
    width: 100%;
  }
}
.listing .listing-item .listing-item-img .listing-item-img-wallpaper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.listing .listing-item .listing-item-img .listing-item-img-shadow {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8408613445) 75%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 719px) {
  .listing .listing-item .listing-item-img .listing-item-img-shadow {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8408613445) 75%, rgb(255, 255, 255) 100%);
  }
}
.listing .listing-item .listing-item-img .listing-item-img-logo {
  background-color: #fff;
  top: 10px;
  left: 10px;
  padding: 5px;
  opacity: 0.9;
}
.listing .listing-item .listing-item-img .listing-item-img-logo img {
  height: 40px;
}
.listing .listing-item .listing-item-content {
  color: #797d8a;
}
.listing .listing-item .listing-item-content .listing-item-title h3 {
  margin-bottom: 8px;
}
@media screen and (max-width: 719px) {
  .listing .listing-item .listing-item-content .listing-item-title h3 {
    margin-top: 0;
  }
}
.listing .listing-item .listing-item-content .listing-item-reviews .listing-item-reviews-points {
  float: left;
  margin-right: 4px;
}
.listing .listing-item .listing-item-content .listing-item-reviews .listing-item-reviews-stars i {
  color: #fdd663;
  float: left;
}
.listing .listing-item .listing-item-content .listing-item-reviews .listing-item-reviews-count {
  margin-left: 4px;
  font-size: 14px;
}
@media screen and (max-width: 719px) {
  .listing .listing-item .listing-item-content {
    padding: 2px 12px;
  }
}
.listing .listing-item .listing-item-desc p {
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.listing .listing-item .listing-item-meta {
  font-size: 15px;
}
.listing .listing-item .listing-item-meta .listing-meta-item {
  margin-bottom: 6px;
}
.listing .listing-item .listing-item-meta .listing-meta-item i {
  color: #03989e;
  display: inline-block;
  width: 16px;
  margin-right: 8px;
  text-align: center;
}
.listing .listing-item .listing-item-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.shop-header {
  height: 300px;
}

.shop-menu {
  height: 60px;
  background-color: #e0f2f3;
  border-bottom: 1px solid #b7d8da;
}
.shop-menu .shop-menu-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  border-left: 1px solid #b7d8da;
  white-space: nowrap;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.shop-menu .shop-menu-links::-webkit-scrollbar {
  display: none;
}
.shop-menu .shop-menu-links a {
  line-height: 60px;
  border-right: 1px solid #b7d8da;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
}
.shop-menu .shop-menu-links a:hover {
  border-bottom: 3px solid #f40c43;
  line-height: 54px;
  margin-top: 3px;
}

.shop-repairs-item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  text-align: center;
}
.shop-repairs-item i {
  font-size: 42px;
  color: #f40c43;
}
.shop-repairs-item span {
  color: #2d3954;
}

.shop-gallery img {
  border-radius: 0.33rem;
  border: 2px solid #e0f2f3;
}

.shop-form .form-group input,
.shop-form .form-group textarea {
  width: 100%;
  background-color: #f7f9fc;
  border: 1px solid #d8d8d8;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: border 0.2s ease-in-out;
}
.shop-form .form-group input:focus,
.shop-form .form-group textarea:focus {
  border: 1px solid #03989e;
}

.shop-contact .shop-contact-item {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 10px;
  align-content: center;
  margin-bottom: 10px;
  align-items: center;
}
.shop-contact .shop-contact-item i {
  color: #03989e;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  font-size: 24px;
}
.shop-contact .shop-contact-item a {
  font-size: 14px;
  line-height: 20px;
  color: #2d3954;
  font-weight: 500;
}
.shop-contact .shop-contact-item a:hover {
  color: #03989e;
}

.shop-shedule p {
  margin: 4px 0;
}
.shop-shedule p b {
  font-weight: 500;
  color: #2d3954;
}
.shop-shedule p span {
  float: right;
}

.tags .tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 0.33rem;
  background-color: #e0f2f3;
  color: #03989e;
  font-size: 14px;
  font-weight: 500;
  margin-right: 4px;
  margin-bottom: 8px;
}
.tags .tag:hover {
  background-color: #03989e;
  color: #fff;
  cursor: pointer;
}

.form-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  color: #2d3954;
  font-size: 15px;
}
.form-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.form-checkbox input {
  opacity: 0;
  width: 0;
}
.form-checkbox input:checked ~ .checkmark {
  background-color: #03989e;
}
.form-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.form-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f7f9fc;
  border: 1px solid #d8d8d8;
}
.form-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form-checkbox .checkmark:after {
  left: 7px;
  top: 2px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.shop-form-error {
  background-color: #f40c43;
  padding: 4px 8px;
  color: #fff;
  border-radius: 0.33rem;
  margin-bottom: 8px;
}/*# sourceMappingURL=styles.css.map */