/* ==============================
   VARIABLES
================================ */
:root {
  --primary-red: #c4161c;
  --dark-black: #111111;
  --white: #ffffff;
  --gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   GLOBAL
================================ */
body {
  padding-top: 85px; /*fixed header space*/
  font-family: "Poppins", sans-serif;
}

/* ==============================
   SECTION TITLE (GLOBAL)
================================ */
.section-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--dark-black);
}
.section-title span {
  color: var(--primary-red) !important;
}

/* ==============================
   HEADER / NAVBAR
================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 999;
  /* Contact Button */
  /* Mobile Toggle */
}
.site-header .navbar {
  padding: 12px 0;
}
.site-header .navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}
.site-header .navbar-brand:hover img {
  transform: scale(1.05);
}
.site-header .nav-link {
  color: var(--dark-black);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}
.site-header .nav-link:hover {
  color: var(--primary-red);
}
.site-header .nav-link.active {
  color: var(--primary-red);
}
.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
}
.site-header .btn-header {
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.site-header .btn-header:hover {
  background: #a11217;
  color: var(--white);
  transform: translateY(-2px);
}
.site-header .navbar-toggler {
  border: none;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}

/* ==============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {
  .site-header .navbar-collapse {
    background: var(--white);
    padding: 15px;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .site-header .nav-link {
    margin: 10px 0;
  }
  .site-header .btn-header {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
/* ==============================
   NAVBAR TOGGLER FIX
================================ */
.navbar-toggler {
  border: 1px solid var(--primary-red);
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon::after {
  bottom: 6px;
}

.navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

/* ==============================
   NAVBAR ALIGNMENT FIX
================================ */
.navbar .navbar-brand {
  margin-right: auto; /*logo left*/
}
.navbar .navbar-toggler {
  margin-left: auto; /*menu button right*/
}

/* Mobile menu spacing */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 10px;
  }
}
/* ==============================
   NAVBAR DROPDOWN
================================ */
.navbar {
  /* Dropdown arrow color */
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  animation: fadeDown 0.3s ease;
}
.navbar .dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  color: var(--dark-black);
  transition: all 0.3s ease;
}
.navbar .dropdown-item:hover {
  background: var(--primary-red);
  color: var(--white);
  padding-left: 25px;
}
.navbar .dropdown-toggle::after {
  border-top-color: var(--primary-red);
}

/* ==============================
   DROPDOWN ANIMATION
================================ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==============================
   FOOTER
================================ */
.site-footer {
  background: var(--dark-black);
  color: var(--white);
  padding: 60px 0 20px;
  font-size: 14px;
  /* Contact Info */
  /* Quick Links */
  /* Opening Hours */
  /* Social Media */
  /* Bottom Bar */
}
.site-footer .footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.site-footer .footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary-red);
  position: absolute;
  left: 0;
  bottom: -8px;
}
.site-footer .footer-text {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 15px;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
}
.site-footer .footer-contact li {
  margin-bottom: 8px;
  color: #cccccc;
}
.site-footer .footer-contact li strong {
  color: var(--white);
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links li {
  margin-bottom: 10px;
}
.site-footer .footer-links li a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-links li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}
.site-footer .footer-hours {
  list-style: none;
  padding: 0;
}
.site-footer .footer-hours li {
  margin-bottom: 10px;
  color: #cccccc;
}
.site-footer .footer-hours li span {
  color: var(--white);
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #222;
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}
.site-footer .footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}
.site-footer .footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: #aaaaaa;
  font-size: 13px;
}

/* ==============================
   FOOTER MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .site-footer .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-footer .footer-social a {
    margin: 5px;
  }
}
/* ===================== HOME BANNER SCSS START ===================== */
.home-banner {
  margin-top: -20px !important;
}
.home-banner .carousel,
.home-banner .carousel-inner,
.home-banner .carousel-item {
  height: 60vh;
}
.home-banner .carousel-item img {
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.home-banner .carousel-caption {
  z-index: 2;
  bottom: 50%;
  transform: translateY(50%);
  text-align: center;
}
.home-banner .carousel-caption h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  animation: fadeUp 1s ease;
}
.home-banner .carousel-caption p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 25px;
  animation: fadeUp 1.3s ease;
}

/* Button */
.btn-red {
  background: #c40000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-red:hover {
  background: #000;
  color: #fff;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .home-banner .carousel-caption h1 {
    font-size: 28px;
  }
  .home-banner .carousel-caption p {
    font-size: 15px;
  }
}
/* ===================== HOME BANNER SCSS END ===================== */
/* ==============================
   COMMON SECTION PADDING
================================ */
.section-padding {
  padding: 70px 0;
}

/* ==============================
   ABOUT PREVIEW
================================ */
.about-preview {
  background: var(--white);
  /* Read More Button */
}
.about-preview .about-img {
  position: relative;
}
.about-preview .about-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.about-preview .about-content {
  padding-left: 25px;
}
.about-preview .about-content .section-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 20px;
}
.about-preview .about-content .section-title span {
  color: var(--primary-red) !important;
}
.about-preview .about-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}
.about-preview .btn-outline-red {
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  padding: 10px 26px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.about-preview .btn-outline-red:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==============================
   ABOUT PREVIEW RESPONSIVE
================================ */
@media (max-width: 991px) {
  .about-preview .about-content {
    padding-left: 0;
    text-align: center;
  }
  .about-preview .section-title {
    font-size: 2rem;
  }
}
/* ==============================
   SECTION SUBTITLE
================================ */
.section-subtitle {
  color: var(--gray);
  font-size: 15px;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ==============================
   PRODUCTS PREVIEW
================================ */
.products-preview {
  /* View All Button */
}
.products-preview .product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.products-preview .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.products-preview .product-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-preview .product-card span {
  color: var(--primary-red);
}
.products-preview .product-card .product-content {
  padding: 20px;
  text-align: center;
}
.products-preview .product-card .product-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 10px;
}
.products-preview .product-card .product-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.products-preview .btn-primary-red {
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.products-preview .btn-primary-red:hover {
  background: #a11217;
  color: var(--white);
  transform: translateY(-2px);
}

/* ==============================
   PRODUCTS PREVIEW RESPONSIVE
================================ */
@media (max-width: 768px) {
  .products-preview .product-card img {
    height: 180px;
  }
}
/* ==============================
   WHY CHOOSE US
================================ */
.why-choose-us {
  background: var(--white);
}
.why-choose-us .why-box {
  background: var(--bg-light);
  padding: 35px 25px;
  text-align: center;
  border-radius: 6px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}
.why-choose-us .why-box:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.why-choose-us .why-box h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 10px;
}
.why-choose-us .why-box span {
  color: var(--primary-red);
}
.why-choose-us .why-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.why-choose-us .why-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: all 0.3s ease;
}
.why-choose-us .why-box:hover .why-icon {
  background: var(--dark-black);
  transform: rotate(5deg);
}

/* ==============================
   WHY CHOOSE US RESPONSIVE
================================ */
@media (max-width: 768px) {
  .why-choose-us .why-box {
    padding: 30px 20px;
  }
}
/* ==============================
   ABOUT PAGE BANNER
================================ */
.about-page-banner {
  position: relative;
  /* margin-top: -85px;*/
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/banner2.jpg") center/cover no-repeat;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}
.about-page-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-in-out;
}
.about-page-banner h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-page-banner h1 span {
  color: var(--primary-red);
}
.about-page-banner p {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

/* ==============================
   ABOUT BANNER RESPONSIVE
================================ */
@media (max-width: 768px) {
  .about-page-banner {
    padding: 65px 15px;
  }
  .about-page-banner h1 {
    font-size: 2rem;
  }
  .about-page-banner p {
    font-size: 14px;
  }
}
/* ==============================
   WHO WE ARE
================================ */
.who-we-are {
  background: var(--white);
}
.who-we-are .who-img {
  position: relative;
}
.who-we-are .who-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.who-we-are .who-content {
  padding-left: 30px;
}
.who-we-are .who-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ==============================
   WHO WE ARE RESPONSIVE
================================ */
@media (max-width: 991px) {
  .who-we-are .who-content {
    padding-left: 0;
    text-align: center;
  }
}
/* ==============================
   MISSION VISION QUALITY
================================ */
.mvq-section .mvq-box {
  background: var(--white);
  padding: 35px 25px;
  text-align: center;
  border-radius: 6px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
.mvq-section .mvq-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.mvq-section .mvq-box h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 10px;
}
.mvq-section .mvq-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.mvq-section .mvq-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: all 0.3s ease;
}
.mvq-section .mvq-box:hover .mvq-icon {
  background: var(--dark-black);
  transform: rotate(6deg);
}

/* ==============================
   MVQ RESPONSIVE
================================ */
@media (max-width: 768px) {
  .mvq-section .mvq-box {
    padding: 30px 20px;
  }
}
/* ==============================
   WHY WE ARE DIFFERENT
================================ */
.why-different {
  background: var(--white);
}
.why-different .diff-box {
  background: var(--bg-light);
  padding: 35px 25px;
  text-align: center;
  border-radius: 6px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}
.why-different .diff-box:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.why-different .diff-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 10px;
}
.why-different .diff-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.why-different .diff-icon {
  width: 65px;
  height: 65px;
  background: var(--primary-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 28px;
  transition: all 0.3s ease;
}
.why-different .diff-box:hover .diff-icon {
  background: var(--dark-black);
  transform: scale(1.05);
}

/* ==============================
   DIFFERENT RESPONSIVE
================================ */
@media (max-width: 768px) {
  .why-different .diff-box {
    padding: 30px 20px;
  }
}
/* ==============================
   PRODUCTS PAGE BANNER
================================ */
.products-page-banner {
  position: relative;
  /* margin-top: -85px;*/ /* fixed header compensation*/
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/banner3.png") center/cover no-repeat;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}
.products-page-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-in-out;
}
.products-page-banner h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.products-page-banner h1 span {
  color: var(--primary-red);
}
.products-page-banner p {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

/* ==============================
   PRODUCTS BANNER RESPONSIVE
================================ */
@media (max-width: 768px) {
  .products-page-banner {
    padding: 65px 15px;
  }
  .products-page-banner h1 {
    font-size: 2rem;
  }
  .products-page-banner p {
    font-size: 14px;
  }
}
/* ==============================
   PRODUCT CATEGORY (COMMON)
================================ */
.product-category {
  background: var(--white);
}
.product-category .product-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 6px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.product-category .product-box:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.product-category .product-box img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}
.product-category .product-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 10px;
  text-align: center;
}
.product-category .product-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}
.product-category .product-box ul {
  padding-left: 18px;
  margin: 0;
}
.product-category .product-box ul li {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
  list-style-type: disc;
}
.product-category .btn-primary-red {
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.product-category .btn-primary-red:hover {
  background: #a11217;
  transform: translateY(-2px);
  color: var(--white);
}

/* ==============================
   PRODUCT CATEGORY RESPONSIVE
================================ */
@media (max-width: 768px) {
  .product-category .product-box img {
    height: 160px;
  }
  .product-category ul {
    text-align: left;
  }
}
/* ==============================
   SMOOTH SCROLL
================================ */
html {
  scroll-behavior: smooth;
}

/* Offset for fixed header */
#aluminium,
#brass,
#copper,
#stainless-steel #Insulators {
  scroll-margin-top: 100px; /* header height + spacing */
}

/* ==============================
   CONTACT PAGE BANNER
================================ */
.contact-page-banner {
  position: relative;
  /* margin-top: -85px;*/ /*fixed header offset*/
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/banner3.png") center/cover no-repeat;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}
.contact-page-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-in-out;
}
.contact-page-banner h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-page-banner h1 span {
  color: var(--primary-red);
}
.contact-page-banner p {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

/* ==============================
   CONTACT BANNER RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-page-banner {
    padding: 65px 15px;
  }
  .contact-page-banner h1 {
    font-size: 2rem;
  }
  .contact-page-banner p {
    font-size: 14px;
  }
}
/* ==============================
   CONTACT SECTION
================================ */
.contact-section {
  background: var(--bg-light);
}
.contact-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-black);
}

/* Contact Info Box */
.contact-info-box {
  background: var(--white);
  padding: 35px;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.contact-info-box p {
  color: var(--gray);
  margin-bottom: 20px;
}
.contact-info-box .contact-info {
  list-style: none;
  padding: 0;
}
.contact-info-box .contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--dark-black);
}
.contact-info-box .contact-info li i {
  color: var(--primary-red);
  font-size: 20px;
  margin-right: 12px;
}
.contact-info-box .contact-info li span {
  font-size: 14px;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.contact-form-box .form-control {
  border-radius: 4px;
  font-size: 14px;
  padding: 12px;
}
.contact-form-box .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: none;
}
.contact-form-box textarea {
  resize: none;
}
.contact-form-box .btn-primary-red {
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}
.contact-form-box .btn-primary-red:hover {
  background: #a11217;
  transform: translateY(-2px);
}
.contact-form-box .success-msg {
  margin-top: 15px;
  color: green;
  font-size: 14px;
}

/* ==============================
   CONTACT RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-info-box,
  .contact-form-box {
    padding: 25px;
  }
}
/* ==============================
   MAP SECTION
================================ */
.map-section {
  width: 100%;
  background: var(--bg-light);
}
.map-section .map-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--primary-red);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
}

/* ==============================
   MAP RESPONSIVE
================================ */
@media (max-width: 768px) {
  .map-section .map-wrapper {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */