:root {
  --color-primary: #ffffff;
  --color-secondary: #1a1d1f;
  --col-accent: #c41230;
  --color-grey: #939393;
}

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

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

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: var(--color-neutral-10);
}

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,
button,
label,
input {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

label {
  display: block;
  position: relative;
}

label span {
  color: var(--color-primary);
  position: absolute;
  left: -8px;
}

input,
input:focus {
  outline: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul {
  list-style: none;
}
/* img {
  width: 100%;
} */
a {
  color: var(--color-black);
  text-decoration: none;
}

/* Typography */
p {
  font-size: 1.6rem;
  line-height: 155%;
}

.body-sm {
  font-size: 1.4rem;
  line-height: 120%;
  color: var(--color-black);
}

.heading {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 105%;
  color: var(--color-black);
}

.subheading {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-black);
}

.title {
  font-size: 1.8rem;
  font-weight: 500;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
}

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

  .heading {
    font-size: 4.8rem;
  }

  .subheading {
    font-size: 2.4rem;
  }

  .title {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

.faq__container {
  margin: 0 auto;
  max-width: 1680px;
}

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

.category__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 5.6rem;
}

.faq__heading {
  text-align: center;
  font-size: 4.8rem;
}
.category__list {
    margin-top: 16px;
}
.category__img {
  width: 152px;
  height: 100px;
  object-fit: cover;
  object-position: center;
}
.category__item {
  margin-bottom: 16px;
  background-color: #f2f2f2;
  padding-right: 12px;
}
.category__item a {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.category__item a,
.category__item,
.category__item svg {
  transition: all 0.3s ease-in-out;
}
.category__item:hover {
  background-color: #b8b8b8;
}
.category__item a:hover {
  color: var(--col-accent);
}

.category__item svg {
  transform: rotate(90deg);
  stroke: var(--color-secondary);
}

.category__item a:hover svg {
  stroke: var(--col-accent);
}

.faq__section .descr {
  margin: 16px 0;
}
.subcategory__item {
    padding: 12px;
    width: 100%;
}
.subcategory__item a {
    justify-content: space-between;
    gap: 4px;
}

.answer__container .answer {
    margin: 64px 0;
}

.category__list .show-more__btn a {
  background-color: var(--col-accent);
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 16px;
  transition: all .3s ease-in-out;
}

.category__list .show-more__btn a:hover {
  background-color: #88091e;
}

.answer__container .line {
  background-color: #b8b8b8;
  width: 100%;
  height: 1px;
  margin-bottom: 48px;
}

.recommendation__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.recomendation__item {
  margin: 8px 0;
}

.recomendation__item p {
  color: var(--col-accent);
}

.recomendation__item p:hover {
  color: #88091e;
}

/* FAQ */
@media screen and (max-width:840px) {
  .category__container {
      grid-template-columns: 1fr;
  }
}