/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
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,
textarea,
summary,
time,
mark,
audio,
video,
textarea {
  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;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 1.2vw, 18px);
}

body {
  font-family: "Questrial", sans-serif;
  color: #0052cc;
  font-size: 0.9rem;
}

.bold{
  width: fit-content;
  height: fit-content;
  padding: 5px;
  background-color: #0052cc;
  color: #fff;
  border-radius: 10px;
}

button{
  width: max-content;
  height: max-content;
  padding: 10px;
  border-radius: 6px;
}

.container{
  width: 100%;
  box-sizing: border-box;
}

header{
  position: fixed;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 15vh;
  padding: 0 3%;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 10px 0.5px #cbcaca;
  z-index: 10000;
}

header .menubar{
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
header .menubar.logo img{
  width: 20%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
header .menubar.menu .menuList a:hover{
  color: #0052cc;
}
header .menubar.menu .menuList a{
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #606060;
  transition: 0.3s ease-in;
}
header .menubar.menu .menuList{
  display: flex;
  justify-content: end;
  align-items: center;
}
header .menubar.menu .menuIcon,
header .menubar.menu .closeMenuIcon,
header .menubar.menu input {
  display: none;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(74,74,74,0.6), rgba(74,74,74,0.6)),
    url(image/herobg.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero div{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero div h1{
  text-align: center;
  font-size: 2.5rem;
  font-weight: 550;
}

.linkButton {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  background: #0052cc;
  border: 1px solid #0052cc;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.linkButton::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.linkButton:hover {
  color: #0052cc;
}

.linkButton:hover::before {
  width: 100%;
}



.welcomeLanding {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #fff 75%, #0052cc 250%);
}
.welcomeLanding .welcomeText {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 3rem;
  gap: 1rem;
  color: #606060;
  box-sizing: border-box;
}
.welcomeLanding .welcomeText h1 {
  text-align: left;
  font-size: 3rem;
  font-weight: 600;
  color: #0052cc;
}
.welcomeLanding .welcomeText h2 {
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
}
.welcomeLanding .welcomeText a{
  width: max-content;
  height: max-content;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #0052cc;
  background-color: #0052cc;
  transition: 0.3s ease-in;
}
.welcomeLanding .welcomeText a:hover{
  color: #0052cc;
  background-color: #fff;
}
.welcomeLanding .welcomeImg {
  width: 45%;
  height: auto;
  display: flex;
  justify-items: center;
  align-content: center;
  padding: 1rem 2rem;
}
.welcomeLanding .welcomeImg img:nth-child(2n) {
  margin-top: 5rem;
}
.welcomeLanding .welcomeImg img {
  width: 100%;
  height: 350px;
  margin-top: 3rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 9px 9px 12px rgba(0, 0, 0, 0.5);
}



.welcomeProduct{
  width: 100%;
  height: 100vh;
  padding-top: 15vh;
  text-align: center;
  background-color: #e6f0ff;
}
.welcomeTextProd h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.welcomeTextProd h2{
  font-size: 1.2rem;
  color: #606060;
  margin-bottom: 2rem;
}
.welcomeProduct .welcomeImgProd{
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  box-sizing: border-box;
}
.welcomeProduct .welcomeImgProd .card{
  width: 22%;
  height: 350px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  position: relative;
}
.welcomeProduct .welcomeImgProd .card:hover div{
  height: 100%;
  padding-top: 0;
  border-radius: 10px;
}
.welcomeProduct .welcomeImgProd .card div{
  width: 100%;
  height: 20%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  gap: 10px;
  bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
  background-color: rgba(0, 82, 204, 0.3);
  box-sizing: border-box;
  transition: 0.5s ease-in;
}
.welcomeProduct .welcomeImgProd .card div h1{
  font-size: 1.4rem;
  font-weight: 600;
}
.welcomeProduct .welcomeImgProd .card:hover div a {
  opacity: 1;
  transform: translateY(0);
}
.welcomeProduct .welcomeImgProd .card div a:hover {
  color: #0052cc;
  background-color: #fff;
}
.welcomeProduct .welcomeImgProd .card div a{
  text-decoration: none;
  width: max-content;
  height: max-content;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: 0.3s ease-in;
  color: #fff;
  background-color: #0052cc;
}



.welcomeProdQuality{
  width: 100%;
  height: 100vh;
  padding-top: 20vh;
  box-sizing: border-box;
}
.welcomeProdQuality .welcomeProdQualityText{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.welcomeProdQuality .welcomeProdQualityText h1{
  font-size: 2.4rem;
  font-weight: 600;
}
.welcomeProdQuality .welcomeProdQualityText h2{
  font-size: 1.2rem;
  color: #606060;
  margin-bottom: 2rem;
}
.welcomeProdQuality .card{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.welcomeProdQuality .card > div{
  width: 22%;
  height: 300px;
  padding: 1rem;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  box-sizing: border-box;
}
.welcomeProdQuality .card > div .icon{
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #0052cc;
  color: #fff;
}
.welcomeProdQuality .card > div h1{
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a192f;
}
.welcomeProdQuality .card > div h2{
  font-size: 1rem;
  color: #606060;
}


.solarHome{
  width: 100%;
  padding: 3% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #f2f5fc;
  box-sizing: border-box;
}
.solarHome .solarContent1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.solarHome .solarContent1 label{
  width: max-content;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: 1.4rem;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-color: #4da3ff;
}
.solarHome .solarContent1 h1{
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0052cc;
}
.solarHome .solarContent1 h2{
  width: 60%;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
  line-height: 2rem;
  color: #606060;
}
.solarHome .solarContent2{
  width: 80%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  background-color: #fff;
  box-sizing: border-box;
}
.solarHome .solarContent2 .solarDescription{
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px -4px #cbcaca;
}
.solarHome .solarContent2 .solarDescription .solarText{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.solarHome .solarContent2 .solarDescription .solarText > div{
  width: 100%;
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  padding: 1rem;
  border-radius: 0.8rem;
  background-color: #d8e7ff;
  box-sizing: border-box;
}
.solarHome .solarContent2 .solarDescription .solarText > div > label{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
.solarHome .solarContent2 .solarDescription .solarText > div > label:first-child > h1{
  font-size: 1.8rem;
  font-weight: 600;
}
.solarHome .solarContent2 .solarDescription .solarText > div > label:nth-child(2) > h1{
  font-size: 1.4rem;
  font-weight: 600;
}
.solarHome .solarContent2 .solarDescription .solarText > div > label:nth-child(2) > h2{
  color: #606060;
}.solarHome .solarContent2 .solarDescription .solarImg{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.solarHome .solarContent2 .solarDescription .solarImg > img{
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.solarHome .solarContent2 .solarQuote h2{
  color: #606060;
  line-height: 1.5rem;
}


.welcomeServe{
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  gap: 1rem;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.welcomeServe::after{
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.7);
}
.welcomeServe .welcomeServeText,
.welcomeServe .welcomeServeTextDua{
  z-index: 8888;
  text-align: center;
}
.welcomeServe .welcomeServeText h1{
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0052cc;
}
.welcomeServe .welcomeServeText h2{
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.welcomeServe .welcomeServeTextDua{
  width: 70%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 10px;
  color: #fff;
}


.welcomeContact{
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  background-color: #dae3f9;
  position: relative;
}
.welcomeContact::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  top: 90px;
  background-color: rgba(255, 255, 255, 0.6);
}
.welcomeContact .welcomeContactText{
  z-index: 8888;
  text-align: center;
}
.welcomeContact .welcomeContactText h1{
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0052cc;
}
.welcomeContact .welcomeContactText h2{
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #606060;
}
.welcomeContact .welcomeContactText a:hover{
  color: #0052cc;
  background-color: #fff;
}
.welcomeContact .welcomeContactText a{
  width: max-content;
  height: max-content;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0052cc;
  background-color: #0052cc;
  color: #fff;
  transition: 0.3s ease-in;
}


.footer {
  width: 100%;
  height: 55vh;
  display: flex;
  padding: 2rem 4rem;
  gap: 2rem;
  box-sizing: border-box;
  background-color: #0b1d33;
}

.footer .footerCard {
  width: 32%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  color: #fff;
  box-sizing: border-box;
}

.footer .footerCard img {
  display: inline-block;
  width: 40%;
  height: auto;
}

.footer .footerCard > label {
  font-weight: 600;
  color: #0052cc;
  padding-bottom: 1rem; /* bisa atur lagi sesuai tinggi label */
}

.footer .footerCard div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.footer .footerCard div label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer .footerCard div a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease-in;
}

.footer .footerCard div a:hover {
  color: #4da3ff; /* sedikit efek hover elegan */
}


/* ABOUT US PAGE */


.heroAbout {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(74,74,74,0.4), rgba(74,74,74,0.4)),
    url(image/aboutus/heroabout.jpeg);
  background-size: cover;
  background-position-y: 20px;
  background-attachment: fixed;
}
.heroAbout div{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.heroAbout div h1{
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}


.aboutLanding {
  width: 100%;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #fff 75%, #0052cc 250%);
}
.aboutLanding .aboutText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
  gap: 1rem;
  color: #606060;
  box-sizing: border-box;
}
.aboutLanding .aboutText h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #0052cc;
}
.aboutLanding .aboutText h2 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2rem;
}



.aboutVM{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding-top: 5vh;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.aboutVM .aboutMission:hover,
.aboutVM .aboutVision:hover{
  box-shadow: 0 0 4px 2px rgba(96, 96, 96, 0.5);
}
.aboutVM .aboutMission,
.aboutVM .aboutVision{
  width: 35%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 2rem 2rem 2rem;
  gap: 1.5rem;
  border-radius: 15px;
  background-color: #fff;
  box-sizing: border-box;
  transition: 0.3s ease-in;
}
.aboutVM h1{
  font-size: 2rem;
  font-weight: 600;
}
.aboutVM h2{
  font-size: 1rem;
  line-height: 1.5rem;
  color: #606060;
}

.aboutCore{
  width: 100%;
  height: 70vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
}
.aboutCore > h1{
  font-size: 2.4rem;
  font-weight: 600;
  color: #0052cc;
}
.aboutCore .valueCardContainer{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.valueCardContainer .valueCard{
  width: 23%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 1rem 1rem 1rem;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  background-color: #fff;
  box-sizing: border-box;
}
.valueCard label{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #0052cc;
}
.valueCard > div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.valueCard > div > h1{
  font-size: 1.4rem;
  font-weight: 600;
}
.valueCard > div > h2{
  font-size: 0.9rem;
  color: #606060;
  text-align: center;
}


.timelineSection {
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #d8e7ff; /* warna lembut biru */
  box-sizing: border-box;
}
.timelineSection h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 3rem;
}
.timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
}
.timelineItem {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.timelineDot {
  width: 14px;
  height: 14px;
  top: 0;
  left: -7px;
  position: absolute;
  background-color: #1d4ed8; /* royal blue */
  border-radius: 50%;
}
.timelineContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  margin-top: 2rem;
  padding: 1rem;
  gap: 1rem;
  position: relative;
  border-left: 2px solid #1d4ed8; /* garis biru vertikal */

}
.timelineContent h2 {
  font-size: 1.8rem;
  text-align: left;
  color: #606060;
}
.timelineContent p {
  font-size: 1rem;
  color: #334155;
  text-align: left;
  margin: 0;
}



/* PRODUCT PAGE */

.heroProduct {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(74,74,74,0.6), rgba(74,74,74,0.6)),
    url(image/product/heroproduct.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.heroProduct > div > h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.heroProduct > div > h2{
  font-size: 1.2rem;
}
.displayProduct{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.listProduct {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}
.listProduct .listPagination {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: 1px solid #cbcaca;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  position: relative;
}
.listProduct .listPagination:hover .overlayCard h1{
  margin-top: 0;
}
.listProduct .listPagination:hover .overlayCard{
  height: 100%;
  border-radius: 10px;
  background-color: rgba(216, 231, 255, 0.9);
}
.listProduct .listPagination .overlayCard{
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow-y: hidden;
  position: absolute;
  background-color: #d8e7ff;
  transition: 0.3s ease-in;
}
.listProduct .listPagination .overlayCard h1{
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 110px;
}
.listProduct .listPagination .overlayCard h2{
  color: #606060;
}
.listProduct .listPagination .overlayCard span{
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 4px 8px;
  margin-right: 5px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}
.listProduct .listPagination .overlayCard a:hover{
  background-color: #fff;
  color: #0052cc;
}
.listProduct .listPagination .overlayCard a{
  text-decoration: none;
  width: max-content;
  height: max-content;
  padding: 5px 8px;
  border-radius: 5px;
  border: 1px solid #0052cc;
  color: #fff;
  background-color: #0052cc;
  transition: 0.3s ease-in;
}


.certification{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #d8e7ff;
  box-sizing: border-box;
}
.certification h1{
  font-size: 2.4rem;
  font-weight: 600;
  color: #0052cc;
}
.certification h2{
  width: 50%;
  font-size: 1rem;
  color: #606060;
}
.certification > div{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.certification > div > div{
  width: 20%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}



/* DETAILS PRODUCT PAGE */

.detailsproduct{
  width: 100%;
  /* min-height: 100vh; */
  padding: 2rem;
  display: grid;
  grid-template-columns: 30% 70%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  box-sizing: border-box;
}
.detailsproduct > div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 5rem;
}
.detailsproduct > div > img{
  width: 100%;
  height: auto;
  border-radius: 15px;
  border: 1px solid #cbcaca;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.detailsproduct > div > h1{
  font-size: 2.4rem;
  font-weight: 600;
  color: #0052cc;
}
.detailsproduct > div > h2{
  font-size: 1.2rem;
  color: #606060;
}
.detailsproduct > div > a{
  text-decoration: none;
  width: max-content;
  height: max-content;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0052cc;
  color: #fff;
  background-color: #0052cc;
  transition: 0.3s ease-in;
}
.detailsproduct > div > a:hover{
  color: #0052cc;
  background-color: #fff;
}



/* PRODUCTION PAGE */

.productionHero{
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.productionHero::after{
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74,74,74,0.6);
}
.productionHero > div{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 8888;
  color: #fff;
}
.productionHero > div > h1{ 
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
.productionHero > div > h2{
  font-size: 1.2rem;
  text-align: center;
} 
.productionProcess{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}
.productionProcess h1{
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}
.productionProcess h2{
  font-size: 1rem;
  text-align: center;
  color: #606060;
}
.productionProcess .productionCard{
  width: 100%;
  display: flex;
  gap: 1rem;
  box-sizing: border-box;
}
.productionProcess .productionCard .card:hover{
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.productionProcess .productionCard .card{
  width: 20%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  gap: 1rem;
  background-color: #d8e7ff;
  transition: 0.3s ease-in;
}
.productionProcess .productionCard .card > h1{
  font-size: 1.2rem;
}
.productionProcess .productionCard .card > h2{
  font-size: 0.9rem;
}
.productionProcess .productionCard .card > div{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* border: 1px solid #0052cc; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.productionFacilities{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  box-sizing: border-box;
  background-color: #d8e7ff;
}
.productionFacilities .mainFacilities{
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 1rem;
  gap: 1rem;
  box-sizing: border-box;
}
.productionFacilities .mainFacilities > div > img{
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.productionFacilities .mainFacilities > div > h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.productionFacilities .mainFacilities > div > h2{
  font-size: 1rem;
  line-height: 2rem;
  color: #606060;
}
.productionFacilities .facilitiesCard{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}
.productionFacilities .facilitiesCard > div{
  width: 23%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid #cbcaca;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  background-color: #fff;
  box-sizing: border-box;
}
.productionFacilities .facilitiesCard > div > h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 1rem;
}
.productionFacilities .facilitiesCard > div > h2{
  font-size: 1rem;
  line-height: 2rem;
  color: #323232;
}
.productionFacilities .facilitiesCard > div > p{
  font-size: 0.9rem;
  line-height: 1rem;
  color: #606060;
  text-align: center;
}


.productionSolar{
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}
.productionSolar .solarText > h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #0052cc;
}
.productionSolar .solarText > h2{
  font-size: 1rem;
  text-align: center;
  color: #606060;
}
.productionSolar .solarPoint{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.productionSolar .solarPoint > div{
  width: 20%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
  border-radius: 10px;
  background-color: #d8e7ff;
  box-sizing: border-box;
}
.productionSolar .solarPoint > div > h1{
  margin-top: 50px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #0052cc;
}
.productionSolar .solarPoint > div > h2{
  font-size: 0.9rem;
  text-align: center;
  color: #606060;
}
.productionSolar .solarImg{
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.solarImg .solarImgText{
  width: 60%;
  display: grid;
  grid-template-columns: 20% 80%;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 1.5rem;
  border-radius: 15px;
  border: 1px solid #cbcaca;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.solarImgText .solarImgTextLeft{
  display: flex;
  justify-content: center;
  align-items: center;
}
.solarImgText .solarImgTextLeft label{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #d8e7ff;
}
.solarImgText .solarImgTextLeft img{
  width: 35px;
  height: 35px;
}
.solarImgText .solarImgTextRight{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.solarImgText .solarImgTextRight > div{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.solarImgText .solarImgTextRight > div > h1{
  font-size: 1.6rem;
  font-weight: 600;
}
.solarImgText .solarImgTextRight > div > h2{
  font-size: 1rem;
  line-height: 1.5rem;
}
.solarImgText .solarImgTextRight > div > img{
  width: 40px;
  height: 40px;
}
.solarImgText .solarImgTextRight > div > label{
  width: max-content;
  height: max-content;
  padding: 8px;
  border-radius: 10px;
  background-color: #d8e7ff;
  color: #606060;
}
.solarImgText .solarImgTextRight > div > label span{
  font-size: 1.1rem;
  font-weight: 600;
  margin-right: 5px;
  color: #0052cc;
}


/* NEWS PAGE */

.newsHero {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.newsHero::after{
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 2;
}
.newsHero div{
  z-index: 9999;
}
.newsHero > div > h1{
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.newsHero > div > h2{
  font-size: 1.2rem;
}
.newsList{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
  box-sizing: border-box;
}
.newsList > h1{
  display: none;
}
.newsList .listPagination:hover{
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.newsList .listPagination{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #cbcaca;
  box-sizing: border-box;
  transition: 0.3s ease-in;
}
.newsList .newsCardImg{
  width: 100%;
  box-sizing: border-box;
}
.newsList .newsCardImg img{
  width: 100%;
  height: auto;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.newsList .newsCardDate .iconDate{
  width: 20px;
  height: 20px;
}
.newsList .newsCardDate{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0 1rem;
  color: #323232;
}
.newsList .newsCardContent{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  margin: 0 1rem;
  gap: 1rem;
}
.newsList .newsCardContent h1 a{
  text-decoration: none;
  color: #0052cc;
  font-size: 1.2rem;
  font-weight: 600;
}
.newsList .newsCardContent h2{
  color: #606060;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination a {
  padding: 0.5rem 1rem;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  text-decoration: none;
  color: #0052cc;
  font-weight: 500;
  transition: 0.2s ease;
}

.pagination a:hover {
  background-color: #0052cc;
  color: white;
}

.pagination a.active {
  background-color: #0052cc;
  color: white;
  pointer-events: none;
}
.pagination .dots {
  padding: 0.5rem 0.8rem;
  color: #666;
}


/* CONTACT US PAGE */

.contactUs{
  width: 100%;
  padding: 2rem;
  /* display: flex;
  flex-direction: column; */
  gap: 5rem;
  box-sizing: border-box;
}
.contactUs .contactInfo{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contactUs .contactInfo > div:hover{
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.contactUs .contactInfo > div{
  width: 30%;
  height: 250px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
  border-radius: 15px;
  border: 1px solid #cbcaca;
  transition: 0.3s ease-in;
}
.contactUs .contactInfo > div label{
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #d8e7ff;
}
.contactUs .contactInfo > div h1{
  font-size: 1.4rem;
  font-weight: 600;
}
.contactUs .contactInfo > div h2{
  text-align: center;
  color: #606060;
}
.contactUs .contactMap{
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  box-sizing: border-box;
}
.contactUs .contactMap .contactMail{
  width: 50%;
  height: 500px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  border-radius: 15px;
  border: 1px solid #cbcaca;
  box-sizing: border-box;
}
.contactUs .contactMap .contactMail h1{
  font-size: 1.8rem;
  font-weight: 600;
}
.contactUs .contactMap .contactMail > div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.contactUs .contactMap .contactMail > div > input:focus,
.contactUs .contactMap .contactMail > div > textarea:focus{
  outline: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.contactUs .contactMap .contactMail > div > input{
  height: 2rem;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cbcaca;
  transition: 0.3s ease-in;
}
.contactUs .contactMap .contactMail > div > textarea{
  height: 5rem;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #cbcaca;
  transition: 0.3s ease-in;
}
.contactUs .contactMap .contactMail > div > button:focus{
  outline: none;
}
.contactUs .contactMap .contactMail > div > button:hover{
  cursor: pointer;
  background-color: #fff;
  color: #0052cc;
}
.contactUs .contactMap .contactMail > div > button{
  width: 100%;
  height: 3rem;
  border-radius: 8px;
  border: 1px solid #0052cc;
  color: #fff;
  background-color: #0052cc;
  transition: 0.3s ease-in;
}
.contactUs .contactGoogleMaps > div iframe{
  border-radius: 15px;
}