:root {
  --color-black: #0b0f20;
  --color-white: #ffffff;
  --color-primary: #13336f;
  --color-secondary: #79a9d2;
  --color-neutral-100: #d9d9d9;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body ::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Futura", sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: var(--color-white);
  color: var(--color-black);
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 56%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body,
ul,
li,
label,
input {
  font-family: "Futura", sans-serif;
  margin: 0;
  padding: 0;
}

label {
  display: block;
  position: relative;
}

input,
input:focus {
  outline: none;
}

button {
  font-family: "Futura", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

.btn {
  border-radius: 100px;
  padding: 8px 24px;
  font-size: 2rem;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

/* Typography */
p {
  line-height: 155%;
  color: var(--color-black);
}

.body-s {
  font-size: 1.8rem;
}

.body-m {
  font-size: 2.4rem;
}

h1 {
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 105%;
  color: var(--color-black);
}

h2 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-black);
}

h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1024px) {
  .body-s {
    font-size: 1.6rem;
  }

  .body-m {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    font-size: 1.2rem;
  }
}

/* Container */
.container {
  max-width: 1464px;
  margin: 0 auto;
}

@media screen and (max-width: 1600px) {
  .container {
    width: 90%;
  }
}

/* Section */
.section {
  margin-bottom: 96px;
}

.section__heading {
  text-align: center;
  margin-bottom: 36px;
}

@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 48px;
  }
}

/* Slider */

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.indicators {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.indicator {
  width: 100%;
  max-width: 230px;
  height: 5px;
  background: var(--color-neutral-100);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active,
.indicator:hover {
  background: var(--color-secondary);
}

@media screen and (max-width: 768px) {
  .indicators {
    margin-top: 8px;
    height: 3px;
    gap: 8px;
  }
}

/* Category */
.category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 600px) {
  .category {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 420px) {
  .category {
    grid-template-columns: 1fr;
  }
}

.magnetic__section {
  background: url(../images/img/grad.jpg) center/cover no-repeat;
  padding: 48px 0;
  width: 100%;
}

.magnetic__heading {
  text-align: center;
  color: var(--color-white);
}

.magnetic__btn {
  background: var(--color-white);
  color: var(--color-primary);
  width: fit-content;
  justify-self: center;
}

.magnetic__section .container {
  display: grid;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .magnetic__section .container {
    gap: 16px;
  }
}

.line {
  background: var(--color-neutral-100);
  height: 1px;
  width: 100%;
  margin: 32px 0;
}

.about-brand__section h3 {
  margin-bottom: 24px;
}
.about-brand__section p {
  margin-bottom: 16px;
}

.about-brand__container {
  max-width: 970px;
}

.innovations__section .container {
  max-width: 970px;
  text-align: center;
}

/* Table */

.compare-table {
  width: 100%;
  color: var(--color-white);
  font-size: 1.8rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 36px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: center;
}
.compare-table tbody th {
  text-align: left;
  background: #035faa;
  max-width: 231px;
}

.compare-table tbody td {
  background-color: var(--color-primary);
}

.table__title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
}

.table__title img {
  max-height: 24px;
  width: fit-content;
}

.check {
  width: 24px;
  height: 24px;
}

th,
td {
  border: 0.5px solid var(--color-secondary);
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  width: 16%;
}

.compare-table .table__header th {
  background: #13336F;
  padding: 24px;
}

.compare-table .table__img th {
  border: none;
  padding: 0;
}

.compare-table .table__img img {
  aspect-ratio: 219/669;
  width: fit-content;
  max-width: 100%;
}

.compare-table th.back-none {
  background: var(--color-white);
  border: none;
}

.table__header .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.table__header .circle {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
}

.table__header .black {
  background-color: var(--color-black);
}
.table__header .pink {
  background-color: #ee9fc3;
}

.table__header .peach {
  background-color: #dcbdc3;
}
.table__header .grey {
  background-color: #9b9b9c;
}

.table__header .blue {
  background-color: #81b6e7;
}


@media screen and (max-width: 960px) {
  .table__wrapper {
    overflow: auto;
  }

  .compare-table {
    font-size: 1.6rem;
  }
}

.radius-top-left {
   border-top-left-radius: 36px;
}

.radius-bottom-left {
   border-bottom-left-radius: 36px;
}

.radius-top-right {
   border-top-right-radius: 36px;
}
.radius-bottom-right {
   border-bottom-right-radius: 36px;
}
