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;
}
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 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 62.5%;
}

body > * {
  overflow: hidden;
}

.heading-primary {
  font-size: 3.2rem;
}

.heading-secondary {
  font-size: 2.4rem;
}

.heading-tertiary {
  font-size: 1.6rem;
}

.text-cont {
  font-size: 1.2rem;
  line-height: 1.7rem;
}

.text-cont-big {
  font-size: 1.4rem;
}

.section-hero {
  position: relative;
}

.hero-image {
  width: 100%;
  margin-bottom: -5px;
}

.section-hero h1 {
  width: 50%;
  text-align: center;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 5vw;
  font-weight: 700;
}

@media (max-width: 700px) {
  .big-img {
    display: none;
  }

  .section-hero h1 {
    width: 80% !important;
    top: 30vw;
  }
}

@media (min-width: 701px) {
  .small-img {
    display: none;
  }
}

.triple-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.triple-image {
  width: 100%;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
}

.grid-cell img {
  width: 100%;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-cell:first-child {
  justify-content: center;
}

.grid-cell:last-child {
  grid-area: 3 / 1 / 4 / 3;
}

@media (max-width: 600px) {
  .section-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid-cell:last-child {
    grid-area: auto;
  }
}

/* Carousel */

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 5rem 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
}
.carousel-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel-btn {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn.left {
  left: 10px;
}
.carousel-btn.right {
  right: 10px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.carousel-dot.active {
  background-color: #333;
}

/* Carousel */
