/** Shopify CDN: Minification failed

Line 359:19 Expected identifier but found whitespace
Line 359:21 Unexpected "{"
Line 359:30 Expected ":"
Line 373:8 Expected identifier but found whitespace
Line 373:10 Unexpected "{"
Line 373:19 Expected ":"
Line 428:19 Expected identifier but found whitespace
Line 428:21 Unexpected "{"
Line 428:30 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:feature-colums (INDEX:26) */
/* Base styles */
.feature-columns-section {
  width: 100%;
  overflow: hidden;
}

.feature-columns-container {
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.feature-columns-heading,
.feature-columns-subheading {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.feature-columns-wrapper {
  margin-top: 20px;
}

.feature-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon styles */
.feature-icon {
  transition: transform 0.3s ease;
}

.feature-column:hover .feature-icon {
  transform: scale(1.1);
}

/* Image styles */
.feature-main-image {
  transition: all 0.3s ease;
}

.feature-column:hover .feature-main-image {
  transform: scale(1.03);
}

/* Text styles */
.feature-column-text p {
  margin-top: 0;
}

/* Responsive handling - Tablet */
@media (max-width: 991px) {
  .feature-columns-wrapper {
    justify-content: center !important;
  }
  
  .feature-column {
    width: calc(50% - 20px) !important;
    margin-bottom: 20px;
  }
  
  .feature-columns-heading {
    font-size: calc(1.5rem) !important;
  }
  
  .feature-columns-subheading {
    font-size: calc(0.9rem) !important;
  }
}

/* Responsive handling - Mobile */
@media (max-width: 767px) {
  .feature-columns-wrapper {
    gap: 20px !important;
    justify-content: center !important;
  }
  
  .feature-column {
    width: 100% !important;
    max-width: 500px !important;
    margin-bottom: 20px;
  }
  
  .feature-columns-heading {
    font-size: calc(1.25rem) !important;
  }
  
  .feature-columns-subheading {
    font-size: calc(0.85rem) !important;
  }
  
  .feature-column-heading {
    font-size: 1.1rem !important;
  }
  
  .feature-column-text {
    font-size: 0.9rem !important;
  }
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-column {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--column-index, 0));
  opacity: 0;
}

/* Add column index for staggered animations */
.feature-columns-wrapper {
  counter-reset: column-counter;
}

.feature-column {
  counter-increment: column-counter;
  --column-index: counter(column-counter);
}
/* END_SECTION:feature-colums */

/* START_SECTION:main-banner (INDEX:42) */
.main-banner-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 aspect ratio for responsiveness */
  overflow: hidden;
}

.main-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 10%;
}

.main-banner-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

.main-banner-heading-box {
  border: 2px solid #FF0000;
  padding: 15px 25px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}

.main-banner-heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.main-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.main-banner-button-arrow {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .main-banner-content {
    padding: 20px 5%;
  }
  
  .main-banner-heading-box {
    padding: 12px 20px;
  }
  
  .main-banner-heading {
    font-size: 1.8rem;
  }
  
  .main-banner-button {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .main-banner-content {
    align-items: center;
  }
  
  .main-banner-text-container {
    align-items: center;
  }
  
  .main-banner-heading-box {
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  
  .main-banner-heading {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .main-banner-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
/* END_SECTION:main-banner */

/* START_SECTION:motox-banner (INDEX:53) */
.motox-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.motox-banner-small {
  height: 300px;
}

.motox-banner-medium {
  height: 400px;
}

.motox-banner-large {
  height: 500px;
}

.motox-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.motox-banner-overlay {
  position: relative;
  z-index: 2;
  width: 600px; /* Fixed width */
  max-width: 90%;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

.motox-banner-heading {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.motox-banner-subheading {
  color: white;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .motox-banner-small {
    height: 250px;
  }

  .motox-banner-medium {
    height: 350px;
  }

  .motox-banner-large {
    height: 450px;
  }

  .motox-banner-overlay {
    width: 90%;
    padding: 20px;
  }

  .motox-banner-heading {
    font-size: 20px;
  }

  .motox-banner-subheading {
    font-size: 14px;
  }
}
/* END_SECTION:motox-banner */

/* START_SECTION:motrox-materials-section (INDEX:54) */
/* Section Container */
.motrox-materials-section {
  padding: 60px 20px;
  background-color: {{ section.settings.section_bg_color }};
  overflow: hidden;
}

/* Header Styling */
.motrox-materials-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.motrox-materials-header h2 {
  color: {{ section.settings.heading_color }};
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.motrox-materials-header h4 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #555;
}

.motrox-materials-header p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

/* Grid Layout */
.motrox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
  .motrox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .motrox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .motrox-grid {
    grid-template-columns: 1fr;
  }
  
  .motrox-materials-section {
    padding: 40px 15px;
  }
}

/* Card Styling */
.motrox-card {
  background-color: {{ section.settings.card_bg_color }};
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.motrox-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.motrox-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.motrox-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.motrox-card:hover .motrox-card-image img {
  transform: scale(1.05);
}

/* Card Content Styling */
.motrox-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.motrox-card-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.motrox-card-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ff5722; /* Accent color - modify as needed */
}

.motrox-card-content p {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
/* END_SECTION:motrox-materials-section */