/* ==============================
   CSS Reset (Meyerweb v2.0)
============================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Blockquote reset */
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* ==============================
   Global Styles
============================== */

body{
  font-family: 'Mukta', sans-serif;
  color: #1d1d1d;
}
/* ==============================
   Header – Mobile First
============================== */

header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background-color: #fff;
  position: relative;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Logo */
header > a {
  display: flex;
  align-items: center;
}

/* Logo image */
header > a img {
  height: 45px;     /* mobile size */
  width: 100%;
  display: block;
  max-width: 300px;
}


/* Phone hidden on mobile */
header > p:last-of-type {
  display: none;
  color: #1d1d1d;
  font-weight: 600;
}

/* Hide checkbox */
header input {
  display: none;
}

/* Hamburger icon */
header label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

header label span {
  width: 20px;
  height: 2px;
  border-radius: 8px;
  background: #1d1d1d;
  display: block;
}

/* Navigation (hidden by default) */
nav {
  grid-column: 1 / -1;
  display: none;
  margin-top: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

nav a {
  color: #1d1d1d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
nav a:hover{
  color: #a23803;
}

nav a.active {
  /* color: #a23803;          */
  border-bottom: 4px solid #a23803;
  color: #a23803;    
}

/* Show menu when hamburger is checked */
header input:checked + label + nav {
  display: block;
}

header p i {
  margin-right: 0.5rem;
}

/* ==============================
   HOME PAGE SECTION – Mobile First Hero section
======================================================================*/

main.home section:first-of-type {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 2rem 1.5rem;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.4)
    ),
    url("images/bgimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color:#1a1a1a;;
}

main.home section:first-of-type{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

main.home section:first-of-type h1 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  color: #a23803;
}

main.home section:first-of-type p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #f1f1f1;
}

main.home section:first-of-type a {
color: #f1f1f1;
  text-decoration: none;
  font-weight: 600;
  border-radius: 33px;
  width: fit-content;
  padding: 4px 10px;
  background-color: #a23803;
  transition: 0.3s ease;
}

main.home section:first-of-type a:hover {
  color: #f1f1f1;
  background-color:transparent;
  border: 2px solid #f1f1f1;
}


/*Product Section....................... */
main.home section:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 4rem 1rem 0rem 1rem;
}
main.home section:nth-of-type(2) h2{
  font-size: 1.75rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
  color: #a23803;
  grid-column: 1 / -1;
}
main.home section:nth-of-type(2) a {
  background-color: #e9e8e8;
  text-decoration: none;
  text-align: center;
  transition: 0.4s ease-in-out;
  color: #333333;
}

main.home section:nth-of-type(2) a:hover {
  transform: scale(1.02);
  cursor: pointer;
}

main.home section:nth-of-type(2) img {
  width: 100%;
  max-width: 390px;
  height: 400px;
  display: block;
}

main.home section:nth-of-type(2) figcaption {
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

main.home section:nth-of-type(2) a p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.4rem;
  padding: 0 10px 0 10px;
}


/* About Section...........................*/

main.home section:nth-of-type(3) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 1rem 0rem 1rem;
  background: #fff;
}

/* Left image container */
main.home section:nth-of-type(3) > div {
  gap: 1rem;
}

main.home section:nth-of-type(3) img {
  width: 100%;
  max-width: 285px;
   height: 445px;
}

main.home section:nth-of-type(3) figure:nth-of-type(1){
  margin-bottom: 2rem;
}

main.home section:nth-of-type(3) figcaption {
  text-align: center;
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Right content */
main.home section:nth-of-type(3) article h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #a23803;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

main.home section:nth-of-type(3) article p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}


/*Services Section ............................ */

main.home section:nth-of-type(4) {
  padding: 2.5rem 1rem;
}

main.home section:nth-of-type(4) h2 {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
  color: #a23803;
}

main.home section:nth-of-type(4) ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

main.home section:nth-of-type(4) article {
  background-color: #d2d2d2;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
}

main.home section:nth-of-type(4) h3 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #a23803;
  transition: color 0.3s ease;
}


main.home section:nth-of-type(4) ul li article p {
  line-height: 1.6;
}

/* Offers Section.......................*/

main.home section:nth-of-type(5) {
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
  background: #222;
  color: #fff;
}

main.home section:nth-of-type(5) h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

main.home section:nth-of-type(5) p {
  font-size: 1.75rem;
  opacity: 0.9;
  font-weight: 600;
  color: #fff;
}

/* Offer cards */
main.home section:nth-of-type(5) article {
  background: #fff;
  color: #000;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

main.home section:nth-of-type(5) h3 {
  font-family: "Poppins", sans-serif;
  color: #a23803;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

main.home section:nth-of-type(5) article p {
  line-height: 1.6;
  color: #1d1d1d;
  font-size: 1rem;
}


/*Visit Our Store Section....................*/

main.home section:nth-of-type(6) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  background: #f5f5f5;
  margin-top: 2rem;
}

/* Image */
main.home section:nth-of-type(6) figure {
  margin: 0;
}

main.home section:nth-of-type(6) img {
  width: 100%;
  display: block;
  border-radius: 8px;
  max-width: 584px;
  height: 320px;
  margin: auto;
}

main.home section:nth-of-type(6) figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

/* Content */
main.home section:nth-of-type(6) h2 {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
  color: #a23803;
  grid-column: 1 / -1;
  text-align: left;
}

main.home section:nth-of-type(6) article h3 {
  font-family: "Poppins", sans-serif;
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

main.home section:nth-of-type(6) article p {
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/*Google Map Section..................*/

main.home section:last-of-type {
  padding: 2.5rem 0rem;
  background: #fff;
  text-align: center;
}

main.home section:last-of-type h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #a23803;
}

main.home section:last-of-type p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #555;
}


#google-map {
  width: 100%;
  height: 350px;
  border-radius: 8px;
}

iframe {
  width: 100%;
  border: 0;
}


/* ==============================
   PRODUCT PAGE — MOBILE FIRST
==================================================================================== */

main.product {
  margin: 0 auto;
  padding: 2rem 1rem;
}



main.product h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #a23803;
}

main.product p {
  font-size: 1rem;
  line-height: 1.6;

}

/*Product Categories ---------- */

main.product section:first-of-type,
main.product section:nth-of-type(2),
main.product section:nth-of-type(3) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 3rem 0;
}


main.product section:first-of-type h2,
main.product section:nth-of-type(2) h2, 
main.product section:nth-of-type(3) h2 {
  grid-column: 1 / -1;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  color: #a23803;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}

/* Product Card Style ---------- */
main.product figure {
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
}

main.product img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

main.product figure figcaption strong {
  font-weight: 600;
  margin-top: 0.75rem;
  font-size: 1rem;
}

main.product figcaption {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  font-family: 'Mukta', sans-serif;
}

/* Why Choose Section ---------- */

main.product section:nth-of-type(4) {
  margin-bottom: 3rem;
}

main.product section:nth-of-type(4) h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #a23803;
  font-family: "Poppins", sans-serif;
}

main.product ul {
  padding-left: 1.25rem;
  line-height: 1.7;
}

/*Help Section ---------- */

main.product section:last-of-type h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #a23803;
  font-family: "Poppins", sans-serif;
}

main.product section:last-of-type p {
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-family: 'Mukta', sans-serif;
}



/* ==============================
   SERVICE PAGE SECTIONS
======================================================================================= */

/* Page heading */
main.service section:first-of-type {
  padding: 2rem 0.5rem;
  max-width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("images/bgimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main.service section:first-of-type h1{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  color: #a23803;
  font-family: "Poppins", sans-serif;
}

main.service section:first-of-type p {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: #e5e7eb;
}

main.service section:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
/* Make the heading span full width */
main.service section:nth-of-type(2) h2 {
  grid-column: 1 / -1;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #a23803;
}

/* Card style.................... */
main.service section:nth-of-type(2) article {
  position: relative;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

main.service section:nth-of-type(2) article::before {  /* Add the filling layer */
  content: "";
  position: absolute;
  inset: 0;
  background-color: #33ba66;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: 0;
}

main.service section:nth-of-type(2) article:hover::before {  /* Animate on hover */
  transform: scaleY(1);
}
main.service section:nth-of-type(2) article * {    /* Keep text above the fill */
  position: relative;
  z-index: 1;
} 

main.service section:nth-of-type(2) article h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #a23803;
}

main.service section:nth-of-type(2) article:hover h3 {
  color: #e5e7eb;
}

main.service section:nth-of-type(2) article p {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Last section layout............... */
main.service section:last-of-type {
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

main.service section:last-of-type article h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #a23803;
}

main.service section:last-of-type article p {
  line-height: 1.7;
}

main.service section:last-of-type article p + p {
  margin-top: 1rem;
}

main.service section:last-of-type h2 {
  grid-column: 1 / -1;
  font-size: 2rem;
  color: #a23803;
  font-weight: 600;
}

main.service section:last-of-type figure{
  display: flex;
  flex-direction: column;
  align-items: center;
}

main.service section:last-of-type figure img {
  max-width: 100%;
}

/* ==============================
   ABOUT MAIN — MOBILE FIRST
======================================================================================== */
main.about{
  margin-top: 2rem;
}
main.about h1{
  font-family: "Poppins", sans-serif;
  color: #a23803;
  font-weight: 600;
  text-align: center;
}

main.about div{
  padding: 0rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
}

main.about div article h2 {
  font-family: "Poppins", sans-serif;
  text-align: left;
  color: #a23803;
  font-weight: 600;
}

main.about div figure {
  display: flex;
  margin: 1.5rem auto;
  text-align: center;
}

main.about div figure img {
  width: 100%;
  border-radius: 12px;
  animation: floatY 3s ease-in-out infinite;
  will-change: transform;
  display: block;
}

@keyframes floatY {  /* for floating aniimation */
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

main.about div article p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

main.about section {
  text-align: left;
  padding: 0 1rem;
  margin-bottom: 1.5rem;
}

main.about section h2 {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #a23803;
  font-weight: 600;
}
main.about section h2 + p{
  margin-top: 0.2rem;
}

main.about section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

main.about section p i {
  margin-right: 1rem;
}
main.about section p a{
  color: #1d1d1d;
}


/* ==============================
   FOOTER SECTION
=============================================================================== */

footer {
  background-color: #1f2933;
  color: #e5e7eb;
  padding: 2rem 1.25rem 1.25rem;
}

footer section {
  margin-bottom: 2rem;
}

footer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

footer p {
  line-height: 1.6;
  color: #d1d5db;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
}

footer a:hover {
  color: #facc15;
}

footer > div {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}







/* ==============================
   Desktop (min-width approach)
==========================================================================*/

@media (min-width: 500px) {

  main.home section:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
  }

  main.home section:nth-of-type(3) > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  main.home section:nth-of-type(3) figure:nth-of-type(1){
  margin-bottom: 0rem;
  }

  main.product section:first-of-type,
main.product section:nth-of-type(2),
main.product section:nth-of-type(3) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  margin: 3rem 0;
}

}

@media (min-width: 768px) {

  /* header */
  header {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem 0.5rem 1rem;
  }

  header > a img {
    height: 60px;     
  }

  /* Hide hamburger */
  header label {
    display: none;
  }

  /* Show nav */
  nav {
    display: block;
    margin-top: 0;
  }

  nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  /* Show phone number */
  header > p:last-of-type {
    display: block;
    font-size: 0.9rem;
  }

/* Home Main............................ */


  main.home section:first-of-type h1 {
      font-size: 4.5rem;
       max-width: 80%;
  }

  main.home section:first-of-type p {
    font-size: 1rem;
     max-width: 80%;
  }

  main.home section:first-of-type > a {
    right: 2rem;
    bottom: 2rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  main.home section:nth-of-type(2) {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 2rem 0rem 2rem;
  }

  main.home section:nth-of-type(3) {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 2rem 0rem 2rem;
  }

  main.home section:nth-of-type(4) {
    padding: 4rem 2rem;
  }

  main.home section:nth-of-type(4) ul {
    grid-template-columns: repeat(3, 1fr);
  }

  main.home section:nth-of-type(5) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 2rem;
  }

  main.home section:nth-of-type(5) header {
    grid-column: 1 / -1;
  }

  main.home section:nth-of-type(6) {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  main.home section:nth-of-type(6) figcaption {
    text-align: left;
  }

  main.home section:last-of-type h2 {
    font-size: 2.1rem;
  }

  main.home section:last-of-type p {
    font-size: 1.05rem;
  }


/* Product Main Section============================== */
  main.product {
    margin: 2rem auto;
    padding: 3rem 2rem;
    font-family: "Open Sans", sans-serif;
  }

  main.product h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  main.product h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  main.product section:first-of-type,
  main.product section:nth-of-type(2),
  main.product section:nth-of-type(3) {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  main.product figure {
    margin-bottom: 1rem;
  }

  main.product img {
    border-radius: 12px 12px 0 0;
  }

  main.product figure figcaption strong {
    font-weight: 600;
    margin-top: 0.8rem;
  }

  main.product figure figcaption {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  main.product ul {
    list-style: disc;
    padding-left: 1.5rem;
  }


/*SERVICE Main Section========================= */

  main.service section:last-of-type {
    padding: 2rem 2rem;
  }

  main.service > h1 {
    font-size: 2.4rem;
    font-family: "Poppins", sans-serif;
  }

  main.service section h2 {
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
  }

  main.service article p {
    font-size: 1rem;
  }

  main.service section:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 2rem;
  }

  main.service section:last-of-type {

    grid-template-columns: 1fr 1fr;
    align-items: center;
  }


/*ABOUT Main Section========================= */
  main.about {
    padding: 2rem 2rem;
  }

  main.about h1{
    font-size: 2rem;
  }

  main.about div {
    padding: 2rem 2rem 0rem 2rem;
    flex-direction: row;
    gap: 2rem;
  }

  main.about div article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
  }

  main.about div article h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }

  main.about section h2 {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    color: #a23803;
    font-weight: 600;
  }



/* FOOTER SECTION............................ */
footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 2rem 1.5rem;
  }
footer h3 {
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
}
  footer > div {
    grid-column: 1 / -1;
  }

}




@media (min-width: 1100px) {

header {
  padding: 0.5rem 6rem 0.5rem 6rem;
}

header > a img {
  max-width: 300px;
  height: 78px;    
}


/* HOME Main================================= */
main.home section:first-of-type {
  padding: 3rem 6rem;
}

main.home section:first-of-type > a {
  margin-right: 4rem;
}

main.home section:nth-of-type(2){
  padding: 4rem 6rem 0rem 6rem;
}

main.home section:nth-of-type(3){
  padding: 4rem 6rem 0rem 6rem;
}

main.home section:nth-of-type(4){
  padding: 4rem 6rem 0rem 6rem;
}

main.home section:nth-of-type(4) ul li article p {
  line-height: 1.6;
}

main.home section:nth-of-type(5){
  margin: 4rem 6rem 0rem 6rem;
}

main.home section:nth-of-type(6) {
  padding: 2.5rem 6rem;
}

main.home section:nth-of-type(7){
  margin: 0rem 6rem;
}


/* PRODUCT Main ........................... */
  main.product{
    padding: 0 6rem;
 }

  main.product h1 {
    font-size: 2.6rem;
  }


  main.product section:first-of-type h2,
  main.product section:nth-of-type(2) h2, 
  main.product section:nth-of-type(3) h2 {
    font-size: 2rem;
  }


/* SERVICE Main ........................... */
  main.service section:first-of-type {
    padding: 2rem 6rem;
    margin-bottom: 3rem;
    min-height: 400px;
  }

  main.service section:first-of-type h1 {
    font-size: 2.6rem;
  }

  main.service section:nth-of-type(2) {
    padding: 2rem 6rem;
  }

  main.service section:nth-of-type(2) {
    grid-template-columns: repeat(3, 1fr);
  }

  main.service section:last-of-type {
    padding: 2rem 6rem;
    line-height: 2;
  }


/* ABOUT MAIN.......................... */
  main.about div{
    padding: 2rem 6rem 0rem 6rem;
  }

  main.about section {
    padding: 0 6rem;
  }

  
/* FOOTER.......................... */
  footer{
    padding: 4rem 6rem 1.5rem 6rem;
  }
}



@media (min-width: 1200px) {

  header {
    padding: 0.5rem 9rem 0.5rem 9rem;
  }


/* HOME Main....................... */
  main.home section:first-of-type {
    padding: 3rem 10rem;
  }

  main.home section:first-of-type > a {
    margin-right: 8rem;
  }

  main.home section:nth-of-type(2){
    padding: 4rem 10rem 0rem 10rem;
  }

  main.home section:nth-of-type(3){
    padding: 4rem 10rem 0rem 10rem;
  }

  main.home section:nth-of-type(4){
    padding: 4rem 10rem 0rem 10rem;
  }

  main.home section:nth-of-type(5){
    margin: 4rem 10rem 0rem 10rem;
  }

  main.home section:nth-of-type(6){
    padding: 4rem 10rem 0rem 10rem;
  }

  main.home section:nth-of-type(7){
    margin: 0rem 10rem;
  }


/* PRODUCT Main...................*/
  main.product{
    padding: 0 10rem;
  }


/* SERVICE Main.......................*/
  main.service section:first-of-type {
    padding: 2rem 10rem;
  }

  main.service section:first-of-type h1 {
    font-size: 5rem;
  }

  main.service section:nth-of-type(2) {
    padding: 2rem 10rem;
  }

  main.service section:last-of-type {
    padding: 2rem 10rem;
  }


/* ABOUT............................. */
  main.about div{
    padding: 2rem 10rem 0rem 10rem;
  }

  main.about section {
    padding: 0 10rem;
  }


/* Footer.............................. */
  footer{
    padding: 1.5rem 10rem 1.5rem 10rem;
  }

}

