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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
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 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 62.5%;
}

@media (max-width: 324px) {
  html {
    font-size: 40%;
  }
}

.heading-primary {
  font-size: 3.8rem;
  font-weight: 700;
}

.heading-secondary {
  font-size: 2.4rem;
  font-weight: 700;
}

.heading-tertiary {
  font-size: 1.8rem;
}

.text-cont {
  font-size: 1.6rem;
}

.add-bold {
  font-weight: 700;
}

.energy-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 5rem 0;
  width: 80%;
  margin: 0 auto;
}

.energy-video,
.energy-image {
  width: 100%;
}

.energy-cont {
  position: relative;
}

.energy-cont h2 {
  position: absolute;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  top: 2rem;
}

@media (max-width: 768px) {
  .energy-image {
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

.section-new {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}

.section-new h2 {
  text-align: center;
  padding-bottom: 3rem;
}

.new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.new-img {
  width: 100%;
  border-radius: 13px;
}

.new-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .new-grid {
    grid-template-columns: 1fr;
  }
}

.section-info {
  width: 80%;
  margin: 0 auto;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 0;
  text-align: center;
}

.info-cont {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.grid-img {
  width: 100%;
}

.section-grid2 {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-grid,
  .section-grid2 {
    grid-template-columns: 1fr;
  }
}

/* carousel */

.carousel-containerrr {
  position: relative;
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  padding: 5rem 0;
}

.carouselll {
  display: flex;
  transition: transform 0.5s ease;
  min-width: 100%;
}

.carousel-itemmm {
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
  flex: 0 0 100%;
  padding-bottom: 2rem;
  text-align: center;
}

.carousel-itemmm:last-child {
  border-right: none;
}

.carousel-img {
  width: 100%;
}

button {
  position: absolute;
  bottom: 23vw;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #333;
}

/* carousel */
