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;
  font-family: "Lato", sans-serif;
}
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;
}

/* carousel */

.custom-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
}
.custom-carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.custom-carousel-slide {
  min-width: 100%;
}
.custom-carousel-slide img {
  width: 100%;
  display: block;
}
.custom-carousel-prev,
.custom-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.custom-carousel-prev {
  left: 10px;
}
.custom-carousel-next {
  right: 10px;
}

.custom-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.custom-carousel-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: lightgray;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.custom-carousel-dot.active {
  background-color: gray;
}

@media (max-width: 400px) {
  html {
    font-size: 70%;
  }
}

@media (max-width: 768pxpx) {
  html {
    font-size: 80%;
  }
}

/* carousel */

/* default */

.heading-primary {
  font-size: 2.4rem;
  font-weight: 700;
}

.heading-secondary {
  font-size: 1.8rem;
  font-weight: 700;
}

.heading-tertiary {
  font-size: 1.4rem;
  font-weight: 700;
}

.text-cont {
  font-weight: 1.2rem;
}

@media (max-width: 768px) {
  .big-img {
    display: none;
  }

  .small-img {
    display: block;
  }
}

@media (min-width: 769px) {
  .big-img {
    display: block;
  }

  .small-img {
    display: none;
  }
}

/* default */

.section-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.info-cell {
  position: relative;
  background-color: #1f1f1f;
  border: 1px solid black;
}

.info-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.center-bottom {
  position: absolute;
  bottom: 2vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.center-top {
  position: absolute;
  top: 2vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: white;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.right-top {
  position: absolute;
  width: 50%;
  top: 2vw;
  right: 2vw;
  text-align: right;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.left-top {
  position: absolute;
  width: 50%;
  top: 2vw;
  left: 2vw;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-last {
  position: relative;
}

.last-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  margin-bottom: -5px;
}

.last-text {
  position: absolute;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  bottom: 5vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  text-align: center;
}

@media (max-width: 768px) {
  .section-info {
    grid-template-columns: 1fr;
  }
}
