.header {
  display: flex;
}
@media screen and (max-width:767px) {
  .header {
    flex-direction: column-reverse;
  }
}
.header__nav {
  flex: 0 0 22%;
  max-width: 22%;
  padding-right: 1rem;
}
@media screen and (max-width:767px) {
  .header__nav {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 1rem;
    padding-right: 0;
  }
}
.header__details {
  flex: 0 0 78%;
  max-width: 78%;
}
@media screen and (max-width:767px) {
  .header__details {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.header__banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .header__banner {
    height: auto;
  }
}
.header__banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:767px) {
  .header__banner > img {
    width: 100%;
    height: auto;
  }
}
.header__shortcuts {
  background-color: #FFFFFF;
  margin-top: 0.5rem;
  border-radius: 7px;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width:767px) {
  .header__shortcuts {
    flex-wrap: wrap;
  }
}
.header__shortcut {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .header__shortcut {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }
}
.header__shortcut > img {
  height: 40px;
  width: auto;
}
@media screen and (max-width:767px) {
  .header__shortcut > img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
  }
}
.header__shortcut > span {
  display: block;
  text-align: center;
}
.category-nav {
  background-color: #FFFFFF;
  height: 100%;
  position: relative;
  border-radius: 8px;
  padding: 1rem 1.5rem 1rem 1rem;
}
@media screen and (max-width:767px) {
  .category-nav {
    height: auto;
    width: 100%;
  }
}
.category-nav__title {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.category-nav__list {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}
.category-nav__item {
  padding-bottom: 0.7rem;
}
.category-nav__item > a {
  display: block;
  position: relative;
  line-height: 1.1rem;
}
.category-nav__item > a:after {
  content: "\f105";
  font-family: 'Line Awesome Free';
  position: absolute;
  top: 0;
  left: 100%;
  font-weight: 900;
}
.category-nav__sub {
  position: absolute;
  left: calc(100% - 10px);
  top: 0;
  bottom: 0;
  display: none;
}
.category-nav__item:hover > .category-nav__sub {
  display: flex;
}
.sub-menu {
  background-color: #FFFFFF;
  box-shadow: 3px 3px 3px #e6e6e6;
  padding: 1rem;
  margin-left: 20px;
  border-radius: 8px;
  display: flex;
}
.sub-menu__list {
  display: flex;
  flex-direction: column;
  margin-right: 3rem;
}
.sub-menu__link {
  white-space: nowrap;
  color: inherit;
}
.hot {
  margin: 2rem 0 1rem 0;
}
.hot .row {
  margin: 0 -6px;
}
.hot .col-md-3 {
  padding: 0 6px;
}
.hot__header {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width:767px) {
  .hot__header {
    font-size: 1.7rem;
    text-align: center;
    color: #2c3e50;
    text-decoration: underline;
  }
}
.hot__item {
  display: block;
}
.hot__img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}
.hot__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hot__title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}
@media screen and (max-width:767px) {
  .hot__title {
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    padding: 20px 10px 10px;
    text-align: center;
  }
}
.category-policies {
  background-color: #FFFFFF;
  border: 1px solid #e6e6e6;
  padding: 2rem 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.category-policies__item {
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.category-policies__title {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0.5rem 0;
  color: #2c3e50;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
.category-policies__title:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #d65548;
  content: '';
}
.category-policies__text {
  font-size: 0.75rem;
  color: #999999;
}
/*# sourceMappingURL=category.parent.css.map */