@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 46.875em) {
  html {
    font-size: 43.75%;
  }
}

body {
  position: relative;
}

.top {
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: #143c8c;
  border: none;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 3rem;
  -webkit-box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
}

.top.active {
  display: block;
}

body {
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

.container {
  margin: 0 auto;
  max-width: 128rem;
}

.u-margin-top-small {
  margin-top: 2rem;
}

.u-margin-right-small {
  margin-right: 2rem;
}

.text-center {
  text-align: center;
}

.u-margin-bottom-small {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 0.5rem;
}

.btn__search {
  background: #143c8c;
  width: 5rem;
  height: 5rem;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.btn__cta {
  background: #fff;
  height: 5rem;
  width: 9rem;
  border: 2px solid #1d7310;
  border-radius: 1rem;
  color: #1d7310;
  font-weight: 600;
}

.btn__cta.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn__outline {
  border: 2px solid #143c8c;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
}

.btn__solid {
  background: #143c8c;
  width: 100%;
  height: 5rem;
  color: #fff;
}

.btn__float {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.5rem;
  color: #143c8c;
  font-weight: 600;
}

.bottom__bar {
  position: fixed;
  width: 70rem;
  background-color: #143c8c;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  padding: 1.5rem 2.5rem;
  border-radius: 0.8rem;
}

.bottom__bar .btn {
  color: #fff;
}

.form__group {
  position: relative;
}

.form__group:not(:last-child) {
  margin-bottom: 1.5rem;
}

.form__group div {
  position: relative;
}

.form.w50 {
  width: 50%;
}

.form__input {
  display: block;
  width: 100%;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  border-radius: 0.5rem;
  border: 2px solid #eee;
}

.form__input:focus {
  outline: none;
  border-bottom: 2px solid #143c8c;
}

.form__input:focus:invalid {
  border-bottom: 3px solid #f00;
}

.form__input::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  display: block;
}

.form__title {
  font-weight: 400;
  font-size: 2rem;
}

.col-1-of-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-1-of-2 .form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-1-of-2 .form__label:not(:last-child) {
  margin-right: 2rem;
}

.col-1-of-2 .form__label input {
  margin-right: 0.5rem;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
          z-index:50;
}

.modal.active {
  display: block;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index:45;
}

.overlay.active {
  display: block;
}

.login {
  width: 100rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login__left, .login__right {
  width: 50%;
}

.login__left {
  padding: 3rem;
}

.login__left .form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}

.login__left .form__title h3 {
  font-weight: 300;
}

.login__left .form__title div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login__left .form__title div span {
  background: #eee;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.login__left .form__title div span:not(:last-child) {
  margin-right: 1rem;
}

.login__left .form__title div span:hover {
  color: #333;
}

.login__left .form__label {
  font-weight: 500;
  margin-bottom: 1rem;
}

.login__right {
  background-color: #2a2a72;
  background-image: linear-gradient(315deg, #2a2a72 0%, #009ffd 74%);
}

.login__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  position: relative;
}

.login__content h1 {
  font-weight: 500;
}

.login__content span {
  display: inline-block;
  margin-bottom: 2rem;
}

.login__content .btn__outline {
  border-color: #fff;
  color: #fff;
  border-radius: 2.5rem;
  padding: 1rem 3rem;
}

.login__content .cancel {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}

.products {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products__item {
  width: calc(33% - 1.6rem);
  height: 26.6rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.8rem;
  margin: 0 0.8rem 1.6rem;
}

.products__item.col-1-of-4 {
  width: calc(25% - 1.6rem);
}

.products__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.products__fig {
  margin: 0;
  overflow: hidden;
}

.products__fig img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
}

.products__content {
  text-align: left;
  margin-top: 1.5rem;
}

:is(.adPrice, .adInfo, .adTitle) {
  display: block;
}

.adLocation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  color: #888;
}

.adPrice {
  font-size: 2.1rem;
  font-weight: 700;
  color: #333;
}

.adInfo {
  color: #143c8c;
}

.adTitle {
  font-weight: 400;
  color: #888;
}

.tab__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tab__header-head {
  border: 2px solid #1d7310;
  border-radius: 2.5rem;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab__header-head:hover, .tab__header-head.active {
  background: rgba(29, 115, 16, 0.3);
}

.tab__header-head:not(:last-child) {
  margin-right: 1rem;
}

.tab__body-content {
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  display: none;
}

.tab__body-content.active {
  display: block;
}

.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 0.5rem;
}

.slider__items {
  width: 100%;
}

.slider__img {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48rem;
  overflow: hidden;
  position: relative;
}

.slider__img.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider__img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.slider .left__slide,
.slider .right__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  cursor: pointer;
}

.slider .left__slide {
  left: 3rem;
}

.slider .right__slide {
  right: 3rem;
}

.header {
  width: 100%;
  background: #fff;
}

.nav {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__brand {
  width: 10rem;
  margin-right: 2rem;
}

.nav__brand img {
  width: 100%;
  height: 100%;
}

.nav__location {
  margin-right: 2rem;
}

.nav__location, .nav__search {
  position: relative;
}

.nav__location input, .nav__search input {
  border: 2px solid #143c8c;
  width: 30rem;
  height: 5rem;
  border-radius: 0.5rem;
  padding-left: 4rem;
  font-size: 1.6rem;
}

.nav__search {
  margin-right: 2rem;
}

.nav__search input[type='search'] {
  width: 60rem;
}

.nav__profile {
  position: relative;
  background: #143c8c;
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-right: 2rem;
}

.nav__bottom {
  position: relative;
  padding: 1rem 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-right: 2rem;
}

.nav__category span {
  margin-right: 1rem;
}

.nav__category-item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__category-list:not(:last-child) {
  margin-right: 2rem;
}

.nav__category-link {
  text-decoration: none;
  color: #143c8c;
}

.nav__fix {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav__fix.active {
  display: block;
}

.down-icon {
  width: 2rem;
}

.search__icon, .search__dropdown {
  width: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search__icon {
  left: 1rem;
}

.search__dropdown {
  right: 1rem;
  cursor: pointer;
}

.option {
  display: none;
  position: absolute;
  top: 110%;
  background: #fff;
  width: 30rem;
  -webkit-box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
  padding: 0 2rem;
  height: 30rem;
  overflow-y: auto;
  z-index: 5;
}

.option.active {
  display: block;
}

.option__top {
  padding: 1.5rem 0;
  border-bottom: 2px solid #eee;
}

.option__bottom {
  padding: 1.5rem 0;
}

.option__bottom h4 {
  font-weight: 400;
  color: #444;
  margin-bottom: 1.5rem;
}

.option-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.option-item.highlight {
  color: #3a77ff;
}

.option-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.option-item p {
  margin-left: 1.5rem;
}

.mega {
  position: absolute;
  top: 150%;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 120rem;
  padding: 1rem 2.5rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 6;
}

.mega.active {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

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

.mega__menu-item {
  list-style: none;
}

.mega__menu-list {
  padding: 0.5rem 0;
}

.mega__menu-link {
  text-decoration: none;
  color: #143c8c;
}

.profile__menu {
  position: absolute;
  z-index: 7;
  top: 200%;
  background: #fff;
  color: #333;
  width: 35rem;
  -webkit-box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.profile__menu.active {
  top: 120%;
  opacity: 1;
  pointer-events: auto;
}

.profile__menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.profile__menu-img {
  width: 7rem;
  margin-right: 1.5rem;
}

.profile__menu-img img {
  width: 100%;
}

.profile__menu-content h5 {
  color: #777;
  font-weight: 400;
}

.profile__menu-content h3 {
  font-size: 1.8rem;
}

.profile__menu-content a {
  font-size: 1.6rem;
}

.profile__menu-bottom {
  padding-top: 1.5rem;
  list-style: none;
}

.profile__menu-list:not(:last-child) {
  margin-bottom: 2rem;
}

.profile__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.profile__menu-link:hover {
  color: #143c8c;
}

.profile__menu-link p {
  margin-left: 1.5rem;
  font-size: 1.7rem;
}

.first.hidden {
  display: none;
}

.second {
  display: none;
}

.second.active {
  display: block;
}

.footer {
  padding: 5rem 0;
  background-color: #ebeeef;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__title {
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer__item {
  list-style: none;
}

.footer__list {
  margin-bottom: 1rem;
}

.footer__link {
  color: #909896;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer__link:hover {
  color: #143c8c;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
}

.footer__social .footer__title {
  margin-bottom: 0;
  margin-right: 1rem;
}

.footer__social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__social li:not(:last-child) {
  margin-right: 1rem;
}

.section__copy {
  padding: 2rem 0;
  border-top: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section__copy p a {
  text-decoration: none;
}

.section__products {
  padding: 5rem 0;
}

.title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section__ads {
  padding: 7rem 0;
  font-size: 1.4rem;
}

.ads {
  width: 100%;
}

.ads__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

.ads__search {
  position: relative;
  width: 45rem;
}

.ads__search input {
  width: 100%;
  border: 2px solid #143c8c;
  height: 5rem;
  border-radius: 0.5rem;
  padding-left: 4rem;
  font-size: 1.6rem;
}

.ads__body {
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.ads__body-top {
  width: 100%;
  border-bottom: 2px solid #ddd;
  padding-bottom: 1rem;
}

.ads__body-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ads__body-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
}

.ads__body-img img {
  width: 5rem;
}

.ads__body-img h4 {
  margin-left: 1.5rem;
}

.ads__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0 0;
}

.ads__status {
  padding: 0.5rem 2.5rem;
  border-radius: 2rem;
  background: #143c8c;
  color: #fff;
}

.ads__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ads__view div:not(:last-child) {
  margin-right: 2rem;
}

.section__description {
  padding: 5rem 0;
  background: #f2f4f5;
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.description__left {
  width: 70%;
}

.description__right {
  width: calc(100% - 71%);
}

.description__right-box {
  border: 2px solid #ddd;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 1rem;
  background: #fff;
}

.description__right-price {
  font-size: 3rem;
  font-weight: 700;
}

.description__right-model {
  color: #666;
}

.description__right-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  color: #666;
  margin-top: 1.5rem;
}

.description__detail {
  border: 2px solid #ddd;
  padding: 0 2rem;
  background: #fff;
}

.description__detail-top, .description__detail-bottom {
  padding: 2rem 0;
}

.description__detail-top {
  border-bottom: 2px solid #ddd;
}

.description__detail-top p {
  color: #666;
}

.description__detail-top p span:last-child {
  margin-left: 7rem;
}

.description__detail-head {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section__category {
  padding: 3rem 0;
}

.section__category .title h4 {
  font-weight: 300;
}

.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 66.6666666667%;
  border: 1px solid #333;
  margin-left: 16.6666666667%;
  border-radius: 0.5rem;
}

.category__left, .category__right {
  width: 50%;
}

.category__left {
  border-right: 1px solid #333;
}

.category__item {
  list-style: none;
}

.category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 5.5rem;
}

.category__list:hover, .category__list.active {
  background: #ddd;
  color: #04024d;
}

.category__list:not(:last-child) {
  border-bottom: 1px solid #333;
}

.category__list h5 {
  font-weight: 400;
  font-size: 1.6rem;
}

.category__list i {
  display: block;
  margin-left: auto;
}

.category__img {
  width: 3rem;
  margin-right: 2rem;
}

.category__img img {
  width: 100%;
}

.subcategory__item {
  list-style: none;
  display: none;
}

.subcategory__item.active {
  display: block;
}

.subcategory__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 5.5rem;
}

.subcategory__list:hover, .subcategory__list.active {
  background: #ddd;
}

.subcategory__list:not(:last-child) {
  border-bottom: 1px solid #333;
}

.subcategory__link {
  text-decoration: none;
  color: #333;
}

.post {
  width: 66.6666666667%;
  border: 1px solid #333;
  margin-left: 16.6666666667%;
  border-radius: 0.5rem;
}

.post__top {
  border-bottom: 1px solid #333;
  padding: 1.5rem;
}

.post__bottom {
  padding: 2.5rem 2rem;
}

.post__bottom .form__label {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.post__bottom .form__title {
  font-size: 2.5rem;
  margin: 0 0 1.2rem;
}

.post__bottom .form__section {
  border-top: 1px solid #333;
  padding: 2rem 0;
}

.images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(10.4rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(10.4rem, 1fr));
  grid-gap: 1rem;
}

.img {
  width: 10.4rem;
  height: 10.4rem;
  border: 2px solid #333;
  border-radius: 3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  max-width: 10.4rem;
  max-height: 10.4rem;
}

.img__icon {
  font-size: 3rem;
}

.img__icon.hidden {
  display: none;
}

.img__text.hidden {
  display: none;
}

.img__input {
  position: absolute;
  font-size: 10rem;
  height: 100%;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.img__el {
  display: none;
  width: 100%;
}

.img__el.active {
  display: block;
}

.img__remove {
  display: inline-block;
  background: none;
  border: none;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 1.5rem;
  cursor: pointer;
  display: none;
}

.img__remove.active {
  display: inline-block;
}

.img__remove img {
  width: 100%;
}

.products__head {
  font-weight: 300;
  font-size: 2.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.products__section {
  margin-bottom: 2rem;
}

.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.products__list:not(:last-child) {
  margin-bottom: 2rem;
}

.products__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.products__aside {
  width: 35rem;
  padding: 2rem;
}

.products__main {
  width: calc(100% - 37rem);
  padding: 2rem;
}

.products__img {
  width: 30rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-right: 3rem;
}

.products__img img {
  height: auto;
  width: 100%;
  max-width: 30rem;
  display: block;
}

.products__title {
  margin-bottom: 1rem;
}

.products__rating {
  color: #fc3;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.products__price {
  font-weight: 700;
  color: #a8b324;
  font-size: 2rem;
}

.products__description {
  font-weight: 300;
  width: 60ch;
}

.products__wishlist {
  position: absolute;
  right: 0;
  top: 2rem;
  color: #999;
  font-size: 2rem;
  cursor: pointer;
}

.products__wishlist.active {
  color: #f00;
}

.products__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

.products__qty {
  position: relative;
  display: none;
}

.products__qty.active {
  display: block;
}

.products__qty.cart {
  width: 10rem;
  margin: 0 auto;
}

.products__qty button {
  padding: 0;
  margin: 0;
  border-style: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  display: inline-block;
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.6rem;
  color: #fff;
}

.products__qty button.qtyminus {
  left: 1rem;
}

.products__qty button.qtyplus {
  right: 1rem;
}

.products__qty input {
  width: 10rem;
  height: 100%;
  padding: 0.8rem 2rem;
  border-radius: 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  background-color: #143c8c;
  border: none;
  color: #fff;
}

.aside__content:not(:last-child) {
  margin-bottom: 2rem;
}

.aside__title {
  color: #0a472e;
  font-size: 2rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.aside__item {
  list-style: none;
}

.aside__list:not(:last-child) {
  margin-bottom: 0.7rem;
}

.aside__link {
  color: #555;
  font-weight: 400;
  text-decoration: none;
}

.aside__link:hover {
  color: #0a472e;
}

.pagination {
  margin: 2rem 0;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.page__numbers {
  margin-right: 2.5rem;
  cursor: pointer;
}

.page__numbers:not(.page__numbers.arrow) {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page__link {
  color: #333;
  text-decoration: none;
}

.section__subscription {
  padding: 5rem 0;
}

.subscription {
  width: 66.6666666667%;
  margin-left: 16.6666666667%;
  border-radius: 0.5rem;
}

.subscription__top {
  background-color: #ffbd35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.5rem;
  padding: 3rem;
}

.subscription__bottom {
  padding: 1rem 0;
}

.subscription__detail {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}

.subscription__detail ul {
  list-style: none;
}

.subscription__detail ul li::before {
  content: '\f00c';
  font: var(--fa-font-solid);
  margin-right: 1rem;
}

.subscription__package {
  padding-top: 1.5rem;
}

.package {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(15rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 2rem;
  margin-top: 2.5rem;
}

.package__item {
  border: 2px solid #999;
  border-radius: 0.5rem;
}

.package__top, .package__bottom {
  text-align: center;
  padding: 1.5rem 2rem;
}

.package__top input {
  accent-color: #000;
}

.package__bottom span {
  font-weight: 600;
}

.proActive{
  font-weight: 800;
}

.hidden{
  display: none;
}


/*
toast
*/
#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: #143c8c;
	color: #fff;
	text-align: center;
	border-radius: 0px 21px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	bottom: 30px;
	font-size: 17px;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 100s;
	animation: fadein 0.5s, fadeout 0.5s 100s;
}

.section__cart {
  padding: 5rem 0;
}

.cart {
  margin: 0 auto 0;
  max-width: 58.4rem;
  border: 1px solid rgba(0, 47, 52, 0.2);
  height: calc(100vh - 9.8rem);
  position: relative;
}

.cart .title h2 {
  font-size: 2.5rem;
  padding: 2.4rem;
}

.cart__detail {
  padding: 0 9.6rem;
  height: 72%;
  height: calc(100% - 15.6rem);
  overflow-y: auto;
}

.cart__package {
  border: 1px solid #333;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.cart__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5rem;
}

.cart__breakdown h3 {
  margin-bottom: 0.5rem;
}

.cart__breakdown-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 0;
}

.cart__bottom {
  padding: 1.6rem;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 1px solid rgba(0, 47, 52, 0.2);
  background-color: #fff;
}

.shop__qty {
  position: relative;
  width: 10rem;
}

.shop__qty.cart {
  width: 100%;
  margin: 0 auto;
}

.shop__qty button {
  position: absolute;
  padding: 0;
  margin: 0;
  border-style: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  display: inline-block;
  border: none;
  background: none;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.6rem;
  color: #333;
}

.shop__qty button.qtyminus {
  left: 1rem;
}

.shop__qty button.qtyplus {
  right: 1rem;
}

.shop__qty input {
  width: 10rem;
  height: 100%;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #143c8c;
  color: #333;
}

.section__package {
  padding: 3rem 0;
}

.package__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.package__aside {
  width: 25rem;
}

.package__main {
  width: calc(100% - 27rem);
}

.tab__aside, .tab__main {
  width: 100%;
}

.tab__head {
  padding: 1rem 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.tab__head:hover, .tab__head.active {
  background: #7fa4ed;
  color: #fff;
}

.tab__content {
  padding: 0 2rem;
  display: none;
}

.tab__content.active {
  display: block;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table__head {
  background: #7fa4ed;
  color: #fff;
}

.table__head tr th {
  padding: 1rem;
}

.table__body {
  text-align: center;
}

.table__body tr td {
  padding: 1rem;
  border: 1px solid #eee;
}

.description__right-cta {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.activity {
  margin-right: 1rem;
}

.like {
  color: #999;
  cursor: pointer;
}

.view {
  pointer-events: none;
}

.like.active {
  color: #143c8c;
}
/*# sourceMappingURL=main.css.map */
.section__products,
.section__sponsored {
  padding: 5rem 0;
}

.section__sponsored .container {
  position: relative;
}

.title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section__loan {
  padding: 5rem 0;
}

.loan__item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.loan__list {
  padding: 1.5rem 2.5rem;
  -webkit-box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 0.6rem rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem;
}

.loan__list:not(:last-child) {
  margin-right: 2.5rem;
}

.loan__img {
  width: 7rem;
  margin-right: 1.5rem;
}

.loan__img img {
  width: 100%;
}

.section__contact {
	padding: 5rem 0;
}

.contact {
	display: flex;
	justify-content: space-between;
}

.contact__left {
	width: 49%;
}

.contact__img {
	width: 100%;
}

.contact__img svg {
	width: 100%;
}

.contact__form {
	width: 49%;
}