.ff-h {
  font-family: "Archivo Black", sans-serif;
}

@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivoblack-regular.woff2") format("woff2"),
    url("../fonts/archivoblack-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.ff-g {
  font-family: "glacial_indifferencebold";
}

@font-face {
  font-family: "glacial_indifferencebold";
  src: url("../fonts/glacialindifference-bold-webfont.woff2") format("woff2"),
    url("../fonts/glacialindifference-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ================ Font Family End ================= */

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
    url("../fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
  font-display: swap;
}

[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

:root {
  --theme-color: #ef3a5d;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

.text-pink {
  color: var(--theme-color);
}

.bg-pink {
  background-color: var(--theme-color) !important;
}

.bi-chevron-double-right::before {
  content: "\f280";
  transform: translateY(1px);
}

.bi-chevron-right::before {
  content: "\f285";
}

.bi-search::before {
  content: "\f52a";
}

.bi-arrow-right::before {
  content: "\f138";
}

.bi-arrow-right-short::before {
  content: "\f135";
  transform: translateY(3px);
}

.bi-download::before {
  content: "\f30a";
}

header {
  background-color: #e7e7e7;
}

header img {
  width: 75px;
}

header strong {
  color: #000;
  font-size: 34px;
  line-height: 34px;

}

header span {
  font-size: 23px;
  line-height: 24px;
}

h1 {
  font-size: 22px;
  line-height: 28px;
}

h2 {
  font-size: 18px;
  line-height: 24px;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 24px;
}

.breadcrumb {
  font-size: 13px;
  line-height: 19px;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: 0.2rem;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.2rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb-item.active {
  color: rgb(255 255 255 / 100%);
}

/* ======================= Make  ========================= */
.make {
  background-color: #ececec;
}

.make a {
  font-size: 16px;
  color: #1b2f99;
  line-height: 22px;
  border-bottom: 1px solid #1b2f99;
}

.make h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 40px;
  height: 2px;
  background-color: #ef3a5d;
}

.manufacture a {
  color: #000;
  font-size: 18px;
  line-height: 24px;
}

.manufacture h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 50px;
  height: 2px;
  background-color: #ef3a5d;
}

/* =======================  Popular Manual ========================= */
.popular-manual h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 40px;
  height: 2px;
  background-color: #ef3a5d;
}

.popular-manual a {
  color: #000;
  font-size: 17px;
  line-height: 23px;
}

.popular-manual .box {
  background-color: #ececec;
  box-shadow: 0px 0px 0px 0px;
}

.popular-manual .box .popular-img {
  padding: 10px;
  background-color: #e1e1e1;
  border-right: 1px solid #cdcccc;
}

.content-detail .border-0 {
  display: block;
  overflow-x: auto;
}

.popular-manual h2::after {
  top: 32px;
  width: 40px;
}

.popular-manual .box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* ================== Table of Content  ==================== */

.app {
  background-color: #fff4f4;
}

.app p {
  color: #5f5f5f;
  font-size: 14px;
  line-height: 20px;
}

.app .border {
  border: 3px solid #ef3a5d !important;
}

.fixed-top {
  box-shadow: 0 0 18px 0 rgba(50, 50, 50, 0.18);
  animation-name: slideInDown;
  animation-duration: 2s;
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* ======================= Table of Content  ========================= */

.table-of-content .card-body li a {
  font-size: 16px;
  line-height: 22px;
}

.table-of-content .col-lg-4 a {
  font-size: 15px;
  line-height: 21px;
}

/* ======================= Responsive  ========================= */


@media (min-width: 576px) {
  header img {
    width: 80px;
  }

  header strong {
    font-size: 38px;
    line-height: 38px;
  }

  header span {
    font-size: 25px;
  }

  h1 {
    font-size: 30px;
    line-height: 36px;
  }

  h2 {
    font-size: 24px;
    line-height: 30px;
  }

  h4,
  .h4 {
    font-size: calc(1.275rem + .3vw);
  }

  .breadcrumb {
    font-size: 16px;
    line-height: 22px;
  }

  .table-of-content .col-lg-4 a {
    font-size: 16px;
    line-height: 22px;
  }

  .popular-manual h2::after {
    top: 40px;
    width: 40px;
  }

  .popular-manual .box img {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 768px) {
  header strong {
    color: #000;
    font-size: 48px;
    line-height: 48px;
  }

  header span {
    font-size: 32px;
  }

  .make a {
    font-size: 18px;
    line-height: 24px;
  }

  header img {
    width: 90px;
  }
}

@media (min-width: 992px) {
  header strong {
    font-size: 54px;
    line-height: 54px;
  }

  header span {
    font-size: 36px;
    line-height: 24px;
  }

  .make h2::after {
    top: 40px;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .popular-manual h2::after {
    top: 45px;
    width: 50px;
  }

  .make a {
    font-size: 20px;
    color: #1b2f99;
    line-height: 26px;
    border-bottom: 1px solid #1b2f99;
  }
}