/*
Theme Name: SolarGlow
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Solar Renewable Energy Html Template
Version: 1.0.0
*/


/*
=================================
|***    Table of contents:   ***|
=================================

Main Style file-> assets/css/main.css 

All the SCSS File in SCSS Folder of Assets Folder. You can read the doc file also for better understand.

// BASIC
@import 'basic';

// MIXIN
@import 'variables';

// TYPOGRAPHY
@import 'typography';

// MIX
@import 'mix';

// HELPER
@import 'helper';

// ICON FONTS
@import 'icon';

// ANIMATION
@import 'animation';

// Button 
@import 'btn';

// Colors 
@import 'colors';

// Preloader 
@import 'preloader';

/* ----------------------------------
    Template Section Styles
 ------------------------------------*/

/* // Menu - Header Section 
 @import 'header';
 
 // Hero Slide - Section 
 @import 'hero';
 
 // Section Title - Heading 
 @import 'section';
 
 // About - Section 
 @import 'about';
 
 // Features - Section 
 @import 'features';
 
 // services - Section 
 @import 'services';
 
 // testimonial - Section 
 @import 'testimonial';
 
 // Portfolio - Cases - Section 
 @import 'project';
 
 // Price Table - Section 
 @import 'price';
 
 // Call To Action - Section 
 @import 'cta';
 
 // Content Block - Section 
 @import 'contentblock';
 
 // team - Section 
 @import 'team';
 
 // funfact - Section 
 @import 'funfact';
 
 // Download - Section 
 @import 'carousel';
 
 // FAQ - Section 
 @import 'faq';
 
 // Blog - Section 
 @import 'blog';
 
 // Contact Us - Section 
 @import 'contact';
 
 // footer - Section 
 @import 'footer';n facts */





/* Mobile Responsiveness Fixes */
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 32px !important;
  }

  .hero-content p {
    font-size: 15px !important;
  }

  .section-title h2 {
    font-size: 28px !important;
  }

  .about-content .section-title h2 {
    font-size: 24px !important;
  }

  .service-card-items h4,
  .service-card-items h3 {
    font-size: 20px !important;
  }

  .cta-content h2 {
    font-size: 26px !important;
  }

  .page-heading h1 {
    font-size: 36px !important;
  }

  /* Utilities for inline styles that we put */
  div[style*="padding: 50px"],
  div[style*="padding: 30px"] {
    padding: 20px !important;
  }

  h1[style*="font-size: 50px"] {
    font-size: 32px !important;
  }

  h2[style*="font-size: 28px"] {
    font-size: 24px !important;
  }

  h3[style*="font-size: 24px"] {
    font-size: 20px !important;
  }

  /* Generic margins/paddings fixes */
  .about-content {
    margin-top: 30px !important;
  }

  .contact-image {
    margin-bottom: 30px;
  }

  .mt-md-0 {
    margin-top: 20px !important;
  }
}

/* Extra fixes for mobile backgrounds breaking into vertical strips */
@media (max-width: 767px) {
  .hero-1 .hero-image {
    -webkit-transition: none !important;
    transition: none !important;
    transform: none !important;
    background-attachment: scroll !important;
    height: 100% !important;
    width: 100% !important;
  }
  
  .page-banner-wrap {
    background-attachment: scroll !important;
    background-position: center center !important;
  }
  
  .hero-1 .swiper-slide-active .hero-image {
    transform: scale(1) !important;
  }
  
  /* Disable any fixed backgrounds to prevent rendering bugs on mobile Safari / Chrome */
  .bg-cover, .counter-section {
    background-attachment: scroll !important;
  }
}

/* Fix for menu breaking into two lines */
@media (min-width: 992px) {
  .main-menu ul li {
    margin: 0 10px;
  }
  .header-left {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) {
  .main-menu ul li {
    margin: 0 15px;
  }
}

/* Force menu 1 line */
@media (min-width: 992px) {
  .main-menu ul li {
    margin: 0 8px !important;
  }
  .main-menu ul li a {
    padding: 38px 0 !important;
    font-size: 15px !important;
  }
}

/* Hide mouse cursor */
.mouse-cursor { display: none !important; }

/* Ensure pointer shows on hovering links and buttons */
a, button, .cursor-pointer { cursor: pointer !important; }
body { cursor: auto !important; }
