/* 
========================================================================== 
  SCSS Style Guide
==========================================================================

  Author: Dorck Coding
  Project: Serra Inox - Landing Page
  Description: 
    This SCSS file defines the base styles, variables, and utility classes
    used throughout the project. It includes settings for typography, 
    color schemes, responsive breakpoints, and reusable mixins.

  Key Sections:
    - Variables: Definitions for colors, fonts, spacing, and breakpoints.
    - Base Styles: Global styles applied to HTML elements and body.
    - Utilities: Classes for margins, paddings, and flex utilities.
    - UI Components: Buttons, headers, and other reusable UI elements.

  Dependencies:
    - Foundation Framework for layout
    - Font Awesome for icons
    - Google Fonts: 'Work Sans' and 'Montserrat'
    - Custom SCSS mixins for transitions, resets, and scaling.

  Notes:
    - Follow the BEM methodology where applicable for naming conventions.
    - Use pre-defined variables for consistency across the project.
    - Media queries are defined using variables for better scalability.

========================================================================== 
*/
/* Functions
	 ========================================================================== */
/**
 * Sets border radius for elements with vendor prefixes for compatibility.
 * @param {number} $pixels - The radius value in pixels.
 */
/**
 * Adds transition effects to elements with vendor prefixes for compatibility.
 * @param {string} $speed - The transition speed.
 * @param {string} $effect - The transition effect.
 */
/**
 * Rotates elements with vendor prefixes for compatibility.
 * @param {string} $deg - The degree of rotation.
 */
/**
 * Aligns elements using flexbox with vendor prefixes for compatibility.
 * @param {string} $vertical - The vertical alignment.
 * @param {string} $horizontal - The horizontal alignment.
 */
/**
 * Scales elements with vendor prefixes for compatibility.
 * @param {number} $x - The scaling factor.
 */
/**
 * Disables text selection on elements with vendor prefixes for compatibility.
 * @param {string} $value - The value for user-select CSS property.
 */
/**
 * Resets the styles of unordered lists.
 */
/**
 * Adds box shadow to elements with vendor prefixes for compatibility.
 * @param {string} $values - The box shadow values.
 */
/**
 * Applies a linear gradient background to elements with vendor prefixes for compatibility.
 * @param {string} $color_a - The starting color of the gradient.
 * @param {string} $color_b - The ending color of the gradient.
 * @param {string} $deg - The direction of the gradient.
 */
/**
 * Crops text within an element with specified adjustments.
 * @param {number} $line-height - The line height of the text.
 * @param {number} $top-adjustment - The top adjustment for cropping.
 * @param {number} $bottom-adjustment - The bottom adjustment for cropping.
 */
/**
 * Sets background color with RGBA values.
 * @param {color} $color - The color value.
 * @param {number} $alpha - The alpha (opacity) value.
 */
/**
 * Limits the number of lines displayed in an element.
 * @param {number} $num - The maximum number of lines to display.
 */
/* Variables
========================================================================== */
/**
* Paths to files.
*/
/**
* Font-related variables specifying the base font family,
* title font family, base font color, and base font size for the project.
*/
/**
* Color variables.
*/
/**
* Color variables defining the primary, secondary, success, and danger colors,
* as well as background and border colors used throughout the project.
*/
/**
* Spacing variables.
*/
/**
* Media query breakpoints.
*/
/* Base
========================================================================== */
html, body {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  color: #000000;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  html, body {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  html, body {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
}

input, select, textarea {
  font-size: 1rem !important;
  font-family: "Work Sans", sans-serif !important;
  color: #000000 !important;
  box-shadow: 0 0 !important;
  border: 1px solid #d4d8dc !important;
  height: 3rem !important;
  display: block !important;
  padding: 0 1rem !important;
}

/* Utilities
========================================================================== */
.margin-none {
  margin: 0;
}

.margin-top {
  margin-top: 1.875rem;
}

.margin-bottom {
  margin-bottom: 1.875rem;
}

.margin-y {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.margin-y-2 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.margin-section {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem;
}

.mt-1 {
  margin-top: 1rem;
}

.ms-1 {
  margin-left: 1rem;
}

.padding-y {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.padding-y-2 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.padding-bottom {
  padding-bottom: 1.875rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-top-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.gap-margin {
  gap: 1.875rem;
}

.gap-1 {
  gap: 1rem;
}

.ul-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.line-limit-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Template
========================================================================== */
.grid-container {
  max-width: 1200px;
}
@media (max-width: 640px) {
  .grid-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* UI Components
========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2C2C2C;
  color: white;
  padding: 1rem 4rem;
  line-height: 1;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 0 none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn.btn-primary, .btn.btn-green {
  background-color: #a6d900;
  color: #272322;
}
.btn.btn-base {
  background-color: #6b7280;
  color: white;
}
.btn:hover {
  transform: scale(1.1);
}

/* General Styles
========================================================================== */
.app-header {
  padding: 1.875rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.app-header .cta {
  border-radius: 99px;
  text-transform: uppercase;
}

.app-main {
  position: relative;
}

.app-footer {
  padding: 1.875rem 0;
  background-color: #387402;
  color: white;
}
.app-footer .copyright {
  margin: 0;
  font-size: 0.875rem;
}
.app-footer .social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
}
.app-footer .social > li {
  display: block;
}
.app-footer .social > li > a {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #a6d900;
  color: #387402;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.app-footer .social > li > a:hover {
  background-color: white;
  transform: scale(1.2);
}
@media (max-width: 640px) {
  .app-footer {
    text-align: center;
  }
  .app-footer .social {
    justify-content: center;
  }
}

.main-banner {
  background: url("../img/main-banner-bg.png") no-repeat scroll center center #2f401f;
  background-size: cover;
  color: white;
  padding: 11rem 0 8rem;
}
.main-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
  text-shadow: 1px 1px 0 #2f401f;
}
.main-banner p {
  font-size: 1.25rem;
  margin-bottom: 4rem;
  text-shadow: 1px 1px 0 #2f401f;
}
@media (max-width: 640px) {
  .main-banner {
    background-size: auto 100%;
    background-position-x: 48%;
  }
  .main-banner h1 {
    font-size: 1.75rem;
  }
  .main-banner p {
    font-size: 1rem;
  }
}

.main-whatis {
  background-color: #a6d900;
}
.main-whatis .image {
  background: url("../img/main-whatis-image.png") no-repeat scroll center center #8b8a78;
  background-size: cover;
  position: relative;
  z-index: 2;
  top: -2.8125rem;
  padding: 1.875rem 3.75rem;
  border-radius: 0 2rem 0 0;
}
.main-whatis .image .box {
  background-color: #111111;
  padding: 1.875rem 3.75rem;
}
.main-whatis .image .box h2 {
  color: white;
  margin-bottom: 1rem;
}
.main-whatis .image .box p {
  color: #a6d900;
  margin: 0;
}

.message-success {
  padding: 1.875rem 0;
  background-color: #387402;
  color: white;
}
.message-success h3 {
  margin-bottom: 1rem;
}
.message-success h3 svg {
  margin-right: 0.5rem;
}
.message-success p {
  margin: 0;
}

.main-calculate {
  margin: 2.8125rem 0;
}
.main-calculate h3 {
  font-size: 2.25rem;
  margin-bottom: 1.875rem;
}
.main-calculate h4 {
  color: #a6d900;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.main-calculate p {
  font-size: 1.125rem;
}
.main-calculate .form {
  margin-bottom: 1.875rem;
}
.main-calculate .form label {
  font-weight: bold;
}
.main-calculate .result {
  margin-bottom: 1.875rem;
}
.main-calculate .result h5 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.main-calculate .result .number {
  color: #a6d900;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
}
.main-calculate .formula {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.875rem;
}
.main-calculate .formula sup {
  font-size: 65%;
}

.main-products {
  background-color: #f5f5f5;
  padding: 2.8125rem 0;
  text-align: center;
}
.main-products h3 {
  font-size: 2.25rem;
  margin-bottom: 1.875rem;
}

.product-item {
  text-align: center;
}
.product-item h4 {
  font-size: 1.5rem;
  margin: 0 4rem 1.875rem;
}
.product-item .image {
  margin: 0 auto 1.875rem;
  padding: 0 1.875rem;
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 1.3198380567;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
}
.product-item .image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-item .btn {
  border-radius: 99px;
  padding: 0.5rem 1rem;
}
@media (max-width: 640px) {
  .product-item {
    margin-bottom: 1.875rem;
  }
}

.main-about {
  padding: 2.8125rem 0;
}
.main-about h3 {
  font-size: 2.75rem;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
  font-weight: 300;
}
.main-about h3 b {
  font-weight: bold;
  color: #a6d900;
}
.main-about p {
  line-height: 1.8;
}

.main-cta {
  background: url("../img/main-cta-bg.png") no-repeat scroll center center #1e3d01;
  background-size: cover;
  color: white;
  padding: 2.8125rem 0;
}
.main-cta h3 {
  font-size: 3rem;
  margin-bottom: 1.875rem;
}
.main-cta p {
  margin: 0;
}

.modal-form {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1.875rem;
  display: none;
}
.modal-form.active {
  display: flex;
}
.modal-form > div {
  width: 100%;
  max-width: 35rem;
  position: relative;
}
.modal-form .close {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #a6d900;
  color: #000000;
  border-radius: 50%;
  position: absolute;
  top: -5.75rem;
  right: 0;
  cursor: pointer;
  font-size: 1.875rem;
  transition: all 0.3s ease;
}
.modal-form .close:hover {
  background-color: #ca1136;
  color: white;
}
.modal-form p {
  margin-bottom: 1.875rem;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace .pace-progress {
  background: white;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px white, 0 0 5px white;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: white;
  border-left-color: white;
  border-radius: 10px;
  animation: pace-spinner 400ms linear infinite;
}

/* Others Styles
========================================================================== */
.pace-inactive {
  display: none;
}
@keyframes pace-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=app.css.map */