* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

html {
  font-size: 62.5%;
}

@media (max-width: 992px) {
  html {
    font-size: 50%;
  }
}

.big-img {
  width: 100%;
}

.small-img {
  display: none;
  width: 100%;
}

.full-img {
  width: 100%;
  margin-bottom: -5px;
}

@media (max-width: 768px) {
  .big-img {
    display: none;
  }

  .small-img {
    display: block;
  }
}

.add-bold {
  font-weight: 700;
}

.add-relative {
  position: relative;
}

.primary-heading {
  font-size: 4.8rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 3.6rem;
  font-weight: 700;
}

.tertiary-heading {
  font-size: 2.4rem;
  font-weight: 700;
}

.basic-text {
  font-size: 1.8rem;
  line-height: 1.5;
}

section {
  position: relative;
}

.add-white {
  color: white;
}

.text-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-center-top .text-box {
  text-align: center;
  position: absolute;
  width: 90%;
  align-items: center;
  transform: translate(-50%, 0);
  left: 50%;
  top: 4%;
}

.section-center-bottom .text-box {
  text-align: center;
  position: absolute;
  width: 90%;
  align-items: center;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 4%;
}

.text-boxt-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qled-logo {
  width: 5rem;
}

.light-logo {
  width: 6rem;
  filter: invert(1);
}

.dolby-logo,
.sport-logo {
  width: 12rem;
  filter: invert(1);
}

.upscale-logo {
  width: 4rem;
}

.remote-logo {
  width: 7rem;
}

.section-center-left .text-box {
  position: absolute;
  width: 30%;
  top: 50%;
  transform: translate(0, -50%);
  left: 5%;
}

.section-center-right .text-box {
  position: absolute;
  width: 30%;
  top: 50%;
  transform: translate(0, -50%);
  right: 5%;
  text-align: right;
  align-items: end;
}

@media (max-width: 768px) {
  .section-center-top .text-box,
  .section-center-left .text-box,
  .section-center-right .text-box,
  .section-center-bottom .text-box {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    margin: 0 auto;
    padding: 3rem 0;
    text-align: left;
    color: black;
    width: 80%;
    align-items: flex-start;
  }

  .dolby-logo,
  .sport-logo,
  .light-logo {
    filter: invert(0);
  }
}
