/* General | Start */
h1 {
  color: var(--white-color);
}

@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

/* General | End */
/* Section - Hero | Start */
#hero .container {
  z-index: 1;
  padding-bottom: 115px;
}
@media (min-width: 768px) {
  #hero .container {
    padding: 100px 20px;
  }
}
#hero .container > .title {
  max-width: 725px;
  margin: 0 auto 24px;
  text-align: center;
}
@media (min-width: 768px) {
  #hero .container > .title {
    margin: 0 auto 40px;
  }
}

.tiles {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .tiles {
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.tiles .tile {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: var(--white-color);
  height: 60px;
  padding: 10px;
  border-radius: 8px;
  transition: 0.25s ease-in-out;
}
.tiles .tile:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .tiles .tile {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 120px;
  }
  .tiles .tile:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 32px -16px #000;
  }
}
.tiles .tile .tile__icon {
  width: 26px;
  margin: 0 12px 0 0 !important;
}
@media (min-width: 768px) {
  .tiles .tile .tile__icon {
    height: 36px;
    width: auto;
    margin: 0 0 16px 0 !important;
  }
}
@media (min-width: 980px) {
  .tiles .tile .tile__icon {
    height: 42px;
  }
}
.tiles .tile .tile__title {
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .tiles .tile .tile__title {
    font-weight: 500;
  }
}
@media (min-width: 980px) {
  .tiles .tile .tile__title {
    font-size: 16px;
  }
}

/* Section - Hero | End */
/* Section - Brands | Start */
#brands {
  background-color: var(--neutral-color);
  margin: 0 20px -55px;
  top: -75px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  #brands {
    margin: 0;
    top: unset;
    border-radius: 0px;
  }
}
#brands .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
#brands .container .title {
  max-width: 225px;
  margin: auto;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  #brands .container {
    grid-template-columns: 1fr 4fr;
    padding: 20px;
  }
  #brands .container .title {
    max-width: unset;
    margin: 0;
    text-align: left;
  }
}
#brands .brand-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  #brands .brand-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
#brands .brand-images img {
  height: auto;
  width: 90px;
  margin: auto;
  filter: grayscale(1) brightness(0.2) opacity(0.4);
}
@media (min-width: 768px) {
  #brands .brand-images img {
    height: 22px;
    width: auto;
  }
}

/* Section - Brands | End */
/* Section - Category Post Content | Start */
#cat__list .cat__list-titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
#cat__list .cat__list-titles h2 {
  margin: 0;
}
#cat__list .cat__list-titles #cat__list-collapse_all {
  font-size: 18px;
  font-weight: 300;
}
#cat__list .cat__list-items .cat__list-item {
  border: 2px solid var(--neutral-color);
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
#cat__list .cat__list-items .cat__list-item .cat__header {
  display: flex;
  align-items: center;
  background-color: var(--neutral-color);
  padding: 15px 35px;
  border: none;
}
#cat__list .cat__list-items .cat__list-item .cat__header .cat__increment {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  line-height: 0;
  margin-right: 20px;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#cat__list .cat__list-items .cat__list-item .cat__header .cat__toggle {
  margin: 0 0 0 auto;
}
#cat__list .cat__list-items .cat__list-item .cat__landing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px;
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item .cat__landing {
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
}
#cat__list .cat__list-items .cat__list-item .cat__landing-image {
  max-height: 300px;
  width: auto;
  border-radius: 5px;
  overflow: hidden;
}
#cat__list .cat__list-items .cat__list-item .cat__landing-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}
#cat__list .cat__list-items .cat__list-item .cat__landing .title {
  margin-bottom: 12px;
}
#cat__list .cat__list-items .cat__list-item .cat__landing .date {
  margin-bottom: 16px;
  font-weight: 300;
  color: var(--primary-color-dark-variant);
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item .cat__landing .date {
    margin-bottom: 40px;
  }
}
#cat__list .cat__list-items .cat__list-item .cat__posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 40px 40px;
  text-decoration: none !important;
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 16px;
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-image {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 500px) {
  #cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-image {
    height: 100px;
  }
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-image {
    width: 150px;
    height: 100px;
  }
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post:hover {
  text-decoration: none;
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta {
  display: flex;
  flex-direction: column;
}
@media (min-width: 980px) {
  #cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta {
    justify-content: space-between;
  }
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta .title {
  font-size: 14px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta .title {
    font-size: 16px;
  }
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta .author, #cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta .date {
  font-size: 14px;
  color: var(--primary-color-dark-variant);
  margin: 0;
}
#cat__list .cat__list-items .cat__list-item .cat__posts .cat__post-meta .author {
  font-weight: 500;
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item .cat__posts {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  #cat__list .cat__list-items .cat__list-item {
    margin-bottom: 30px;
  }
}
#cat__list .cat__list-items .acc__el-body {
  max-height: unset;
}

/* Section - Category Post Content | End */
/* Section - Value Proposition | Start */
#value-prop .title {
  margin-bottom: 60px;
  max-width: 625px;
  margin: 0 auto 45px;
}
#value-prop .title h2 {
  position: relative;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  max-width: 325px;
  margin: auto;
  z-index: 2;
}
#value-prop .title img {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 768px) {
  #value-prop .title h2 {
    max-width: 100%;
  }
  #value-prop .title img {
    top: -15px;
  }
}
#value-prop .values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 980px) {
  #value-prop .values {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}
#value-prop .values .value {
  max-width: 450px;
  margin: auto;
  text-align: center;
}
#value-prop .values .value__title {
  margin-bottom: 12px;
}
#value-prop .values .value__copy {
  font-size: 16px;
}
#value-prop .values .value__image {
  height: 225px;
  margin-bottom: 20px;
}

/* Section - Value Proposition | End */
/* Section - Proof | Start */
#proof .proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 768px) {
  #proof .proof {
    grid-template-columns: 1fr 1fr;
  }
}
#proof .proof__content .title {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-color);
}
#proof .proof__content .subtitle {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.1;
}
#proof .proof__content .copy {
  font-size: 18px;
  color: var(--primary-color-dark-variant);
}
@media (min-width: 768px) {
  #proof .proof__content .title {
    font-size: 24px;
  }
  #proof .proof__content .subtitle {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
#proof .proof__image {
  position: relative;
  line-height: 0;
  order: -1;
}
#proof .proof__image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.8) 2%, transparent 90%);
  z-index: 2;
}
@media (min-width: 768px) {
  #proof .proof__image {
    order: 2;
  }
}

/* Section - Proof | End */
/* Section - Proof | Start */
#product-category-slider {
  background: linear-gradient(180deg, rgba(0, 94, 255, 0.15) 0%, transparent 70%);
}
#product-category-slider .title {
  margin-bottom: 60px;
  max-width: 400px;
  margin: 0 auto 45px;
}

/* Section - Proof | End */

/*# sourceMappingURL=front-page.css.map */
