* {
  box-sizing: border-box;
  text-decoration: none;

  &:after {
    box-sizing: border-box;
    text-decoration: none;
  }

  &:before {
    box-sizing: border-box;
    text-decoration: none;
  }
}

:root {
  --primary: #ff9073;
  --primary2: #ff7c5a;
  --red: #ff5050;
  --warning-red: #ef5555;
  --color-2: #3d5560;
  --color-3: #f8fafb;
  --color-5: #808080;
  --color-6: #ccc;
  --green: #4a9b69;
  --border-radius: 8px;
  --container: #171c21;
  --background: #1e242a;
}

html,
body {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit";
  font-weight: 400;
  overflow-x: hidden;
  text-align: center;
  background: #f0f0f0;
  font-size: 1.6rem;
}

.wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  position: relative;
  background-color: var(--background);
}

.banner.background::before {
  background-image: url("/assets/images/web-banner-2026.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.5);
}

.container {
  width: 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: start;
  flex-direction: column;
  padding-top: 50px;
  position: relative;
}

.container.top {
  justify-content: start;
  padding-top: 150px;
}

.container .content {
  width: 100%;
}

.icon-list {
  width: 100%;
  display: flex;
  gap: 20px;
}

.icon-list i {
  font-size: 2.5rem;
  color: #f5f5f5;
  transition: transform 0.3s ease-in-out;
}

.icon-list i:hover {
  transform: scale(1.05);
  color: black;
}

h1 {
  font-size: 4.2rem;
  margin-bottom: 0px;
  color: #f5f5f5;
  font-weight: 600;
  display: flex;
  justify-content: start;
  align-items: center;
}

p.space-below {
  margin-bottom: 100px;
}

ul li {
  font-size: 2rem;
  margin-top: 5px;
  color: #f5f5f5;
  font-weight: 400;
  width: 65%;
}

h2 {
  font-size: 3.2rem;
  margin-bottom: 0px;
  color: #f5f5f5;
  font-weight: 400;
}

h1 svg {
  margin-right: 10px;
  fill: #f5f5f5;
  height: 36px;
}

a {
  color: var(--primary);
}

.update {
  margin-top: 45px;
}

p {
  font-size: 2.2rem;
  margin-top: 5px;
  margin-bottom: 25px;
  color: #f5f5f5;
  font-weight: 400;
  width: 65%;
}

span {
  width: 100%;
  margin-bottom: 35px;
  font-size: 2.2rem;
  color: #f5f5f5;
}

svg.logo {
  fill: #f5f5f5;
  height: 32px;
}

nav {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: start;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 25px;
}

nav .product {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-left: 15px;
  font-size: 2.8rem;
  color: #f5f5f5;
  opacity: 0.8;
}

nav .product svg {
  fill: #f5f5f5;
  height: 32px;
  margin-right: 10px;
}

nav .row {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  h1 {
    font-size: 3.6rem;
  }

  p {
    font-size: 1.8rem;
  }
}
