@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

body {
  width: 100%;
}

/* Contact Page */

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-top: 70px;
}

#contact-details .details {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#contact-details .details h2,
#form-details h2 {
  font-size: 34px;
  line-height: 35px;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 1rem;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 400px;
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 50%;
  animation-fill-mode: both;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

/* Start Media Query */

@media (max-width: 799px) {
  .section-p1 {
    padding: 40px;
  }
}

@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }

  /* Contact Page */
  #contact-details .details {
    width: 100%;
    padding-bottom: 30px;
  }
  #contact-details .map {
    width: 100%;
  }
  #contact-details {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  #contact-details .details h2,
  #form-details h2 {
    padding-top: 3.5rem;
    display: flex;
    margin: auto;
  }
  #contact-details .details h3 {
    display: flex;
    margin: auto;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap");

body {
  line-height: 1.5;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-display: swap;
}
body.hidden-scrolling {
  overflow-y: hidden;
}
* {
  margin: 0;
  box-sizing: border-box;
}
.container {
  /* max-width: 1170px; */
  margin: auto;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/*header*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  box-shadow: 1px 1px 3px #787676;
  /* padding: 15px; */
}
.header-main {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 15px;
  border-radius: 0px;
}
.header .logo {
  padding: 0 15px;
  width: 30%;
}
.header .logo-img {
  width: 50%;
  display: block;
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: black;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #553cbb;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #4bd855;
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: #4bd855;
  transition: 0.5s;
  text-underline-offset: 5px;
}
#active {
  color: #4bd855;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}
#active-sub {
  color: #4bd855;
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #4bd855;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .navbara {
    text-decoration: none;
    display: block;
    position: relative;
    color: #553cbb;
  }
  .navbara:hover {
    color: #4bd855;
    transition: 0.5s;
  }
  .navbara:after {
    color: #4bd855;
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 12px;
    background: #4bd855;
    transition: 0.3s linear;
  }
  .navbara:hover:after {
    width: 100%;
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  /* background-color: #ffffff; */
  margin: -5px 0 2px 227px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 16px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/*home section*/
.home-section {
  width: 100%;
  display: block;
  min-height: 100vh;
  background-image: url("../img/home.jpg");
  background-position: center top;
  background-size: cover;
}

/* responsive */

@media (max-width: 991px) {
  .header .logo {
    padding: 0 15px;
    width: 30%;
  }
  .header .logo-img {
    width: 70%;
  }
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #ffffff;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.1s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: black;
    padding: 12px 15px;
    /* border-bottom: 1px solid #333333; */
  }
  /* .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333;
  } */
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: #4bd855;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: black;
    /* border-bottom: 1px solid #333333; */
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }
}

@media only screen and (max-width: 500px) and (min-width: 300px) {
  .header .logo {
    padding: 0 15px;
    width: 40%;
  }
  .header .logo-img {
    width: 100%;
  }
  .header-main {
    padding: 11px 0px;
  }
  .container2 .products-container .product {
    animation-name: fade;
    transition: all 0.3s ease;
    view-timeline-name: --products-container;
    view-timeline-axis: block;
    animation-timeline: --products-container;
    animation-range: entry 15% cover 50%;
    animation-fill-mode: both;
  }
  #toggle-btn {
    position: static;
    margin-left: 133px;
  }
  .header .menu > .menu-item > a .plus {
    margin-right: 14px;
  }
}

/* Banner */
#jssor_1 {
  margin-top: 68px;
}
@media only screen and (max-width: 500px) and (min-width: 300px) {
  #jssor_1 {
    margin-top: 55px;
  }
}

/* CONTACT */
#envelope1 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 3px 0px;
  margin-right: -4px;
}
#whatsapp1 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 3px 0px;
}
#map1 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 3px 0px;
  margin-left: 0px;
  margin-right: 8px;
}
.footer-text1 {
  font-size: 22px;
  color: black;
  margin: auto auto auto 15px;
}
.footer-text3 {
  font-size: 22px;
  color: black;
  margin: auto auto auto 5px;
}
.footer-text4 {
  font-size: 22px;
  color: black;
  margin: auto auto auto 18px;
}
.footer-text5 {
  font-size: 22px;
  color: black;
  margin: auto auto auto 13px;
}
.footer-text1:hover,
.footer-text3:hover,
.footer-text4:hover {
  color: #4bd855;
  font-weight: bold;
  /* font-size: 24px; */
  transition: 0.15s;
  transform: scale(1.07);
}
a.aw {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    width: 50px;
    height: 50px;
  }
  &:hover {
    transition: 0.2s;
    transform: scale(1.3);
  }
}
.a-contact {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    width: 50px;
    height: 50px;
  }
  &:hover {
    transition: 0.2s;
    transform: scale(1.3);
  }
}

.icon-contact2 {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: -12px;
    top: 4px;
    z-index: -1;
    width: 50px;
    height: 50px;
  }
  &:hover {
    transition: 0.5s;
    transform: scale(1.2);
  }
}
.footer-text {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    width: 50px;
    height: 50px;
  }
  &:hover {
    transition: 0.2s;
    transform: scale(1.3);
  }
}

.footer-text10 {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: 103px;
    top: -13px;
    z-index: -1;
    width: 214px;
    height: 50px;
  }
  &:hover {
    transition: 0.2s;
    transform: scale(1.15);
  }
}
.icon {
  transform: translateX(0%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;

  &:after {
    content: "";
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    width: 50px;
    height: 50px;
  }
  &:hover {
    transition: 0.2s;
    transform: scale(1.5);
  }
}

#time1 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 3px 0px;
}
#phone1 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 3px 0px;
  margin-left: 0px;
}
/* FOOTER */
.main-column {
  float: left;
  width: 33.33%;
  padding: 0px 40px;
  text-align: center;
}
.main-columnImage {
  float: left;
  width: 33.33%;
  padding: 0px 40px;
  text-align: center;
  align-self: center;
}
#envelope {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
#whatsapp {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
#icon2 {
  margin-right: 2px;
}
#phone3 {
  margin-right: -4px;
}
#phone {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
  margin-left: -11px;
}
#map {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
#time {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
.footer-text {
  font-size: 15px;
  color: black;
}
.footer-text10 {
  font-size: 15px;
  color: black;
}
.contact-text {
  font-size: 15px;
  color: black;
  display: flex;
  margin: 15px 0px;
}
.contact-text3 {
  font-size: 15px;
  color: black;
  display: flex;
  margin-left: 46%;
  margin-top: 10px;
  margin-bottom: 10px;
  /* margin: 15px 0px; */
}
.contact-text4 {
  font-size: 15px;
  color: black;
  display: flex;
  margin-left: 43%;
  margin-top: 10px;
  margin-bottom: 10px;
  /* margin: 15px 0px; */
}
.footer-text2 {
  font-size: 15px;
  color: black;
}
.footer-header {
  font-size: 23px;
  color: #4bd855;
  padding-top: 10px;
  text-transform: uppercase;
}
.footer-header2 {
  font-size: 23px;
  color: #4bd855;
  padding-top: 10px;
  text-transform: uppercase;
}
.icon {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
.icon-contact {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
.icon-contact2 {
  font-size: 30px;
  color: #4bd855;
  text-align: center;
  padding: 7px 0px;
}
.iconWhatsappContact {
  width: 48px;
  text-align: center;
  padding: 7px 0px;
}
a.aw {
  margin-left: -9px;
}
.iconWhatsapp {
  width: 48px;
  text-align: center;
}
.iconWhatsapp2 {
  width: 48px;
  text-align: center;
  padding: 7px 0px;
  margin-left: -10px;
}
.iconMap2 {
  margin-top: -8.1px;
  height: 48px;
  text-align: center;
  padding: 7px 0px;
}
.iconMap {
  margin-top: 4.2px;
  height: 34px;
  text-align: center;
}

.footer-text:hover {
  transition: 0.15s;
  color: #4bd855;
  /* font-weight: bold; */
}
.footer-text10:hover {
  transition: 0.2s;
  color: #4bd855;
  /* font-weight: bold; */
}
@media only screen and (max-width: 500px) and (min-width: 300px) {
  #envelope {
    font-size: 32px;
    color: #4bd855;
    text-align: center;
    padding: 15px 0px;
  }
  #whatsapp {
    font-size: 38px;
    color: #4bd855;
    text-align: center;
    padding: 15px 0px;
  }
  #phone {
    font-size: 38px;
    color: #4bd855;
    text-align: center;
    padding: 15px 0px;
  }
  #map {
    font-size: 38px;
    color: #4bd855;
    text-align: center;
    padding: 15px 0px;
  }
  #time {
    font-size: 38px;
    color: #4bd855;
    text-align: center;
    padding: 15px 0px;
    margin-right: -5px;
  }

  .main-column {
    float: left;
    width: 100%;
    text-align: center;
    border: none;
  }
  .main-columnImage {
    width: 100%;
  }
  .footer-text {
    font-size: 20px;
    color: black;
  }
  .footer-text10 {
    font-size: 20px;
    color: black;
  }
  .footer-text2 {
    font-size: 20px;
    color: black;
  }
  .footer-header,
  .footer-header2 {
    font-size: 30px;
  }

  footer .logo {
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .main-column h3 {
    view-timeline-name: --products-container;
    view-timeline-axis: block;
    animation-timeline: --products-container;
    animation-name: fade;
    animation-range: entry 15% cover 20%;
    animation-fill-mode: both;
  }
  .main-column p {
    view-timeline-name: --products-container;
    view-timeline-axis: block;
    animation-timeline: --products-container;
    animation-name: fade;
    animation-range: entry 15% cover 20%;
    animation-fill-mode: both;
  }
  .main-column span {
    view-timeline-name: --products-container;
    view-timeline-axis: block;
    animation-timeline: --products-container;
    animation-name: fade;
    animation-range: entry 15% cover 20%;
    animation-fill-mode: both;
  }
}

.phone {
  content: U+1F4DE;
}
/* PRODUCT CARD HOMEPAGE */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap");

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;

  /* text-transform: capitalize; */
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #eee;
}
.container2 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.container2 .title {
  margin-top: 1rem;
  font-size: 35px;
  color: #7856fd;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 50px;
}
.title-about {
  margin-top: 3rem;
  font-size: 35px;
  color: #7856fd;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 50px;
}

.container2 .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 8rem;
  padding: 0rem 3rem;
}

/* .container2 .products-container .product {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  outline: 0.1rem solid #ccc;
  outline-offset: -1.5rem;
  cursor: pointer;
} */

.container2 .products-container .product {
  text-align: center;
  padding: 3rem 2rem;
  box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 15% cover 50%;
  animation-fill-mode: both;
}

.container2 .products-container .product:hover {
  transform: scale(1.08);
  background: #fff;
  box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.container2 .products-container .product img {
  height: 25rem;
  transition: all 0.2s ease;
}

.container2 .products-container .product:hover img {
  transform: scale(1.08);
  transition: all 0.2s ease;
}

.container2 .products-container .product h3 {
  padding: 0.5rem 0;
  font-size: 2.1rem;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.2s ease;
}

.container2 .products-container .product:hover h3 {
  transform: scale(1.08);
  transition: all 0.2s ease;
}
/* .container2 .products-container .product:hover h3 {
  color: #27ae60;
} */

.container2 .products-container .product .price {
  font-size: 2rem;
  color: #1c8223;
  /* color: #14611B; */
}

.container2 .products-container .product:hover .price {
  transform: scale(1.08);
  transition: all 0.2s ease;
}
.products-preview {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.products-preview .preview {
  display: none;
  padding: 2rem;
  text-align: center;
  background: #fff;
  position: relative;
  margin: 2rem;
  width: 40rem;
}

.products-preview .preview.active {
  display: inline-block;
}

.products-preview .preview img {
  height: 30rem;
}

.products-preview .preview .cross {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 4rem;
  display: block;
  transition: all 0.2s linear;
}

.products-preview .preview .cross:hover {
  transform: rotate(60deg);
  transition: all 0.2s linear;
}
.products-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 4rem;
  display: block;
  transition: all 0.2s linear;
}

.products-preview .preview .fa-times:hover {
  transform: rotate(90deg);
  transition: all 0.2s linear;
}

.products-preview .preview h3 {
  font-weight: 700;
  color: #553cbb;
  font-size: 2.5rem;
  text-transform: capitalize;
  margin-top: 15px;
}

.products-preview .preview .stars {
  /* padding: 1rem 0; */
  font-size: 1.7rem;
}

.products-preview .preview .stars i {
  color: #27ae60;
}

.products-preview .preview .stars span {
  color: #999;
}

.products-preview .preview p {
  line-height: 1.5;
  /* padding: 1rem 0; */
  font-size: 1.6rem;
  color: #000000;
}

.products-preview .preview .price {
  /* padding: 1rem 0; */
  font-size: 2.5rem;
  color: #1c8223;
}

.products-preview .preview .buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.products-preview .preview .buttons a {
  flex: 1 1 16rem;
  padding: 1rem;
  font-size: 1.8rem;
  color: #444;
  border: 0.1rem solid #444;
}

.products-preview .preview .buttons a.cart {
  background: #444;
  color: #fff;
}

.products-preview .preview .buttons a.cart:hover {
  background: #111;
}

.products-preview .preview .buttons a.buy:hover {
  background: #444;
  color: #fff;
}

.products-button {
  margin: auto;
  background-color: #4bd855;
  font-size: 20px;
  padding: 16px;
  text-align: center;
  border-radius: 19px;
  display: flex;
  font-weight: 900;
  margin-top: 2rem;
  margin-bottom: 3rem;
  color: white;
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
.products-button:hover {
  transform: scale(1.08);
  /* box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1); */
  transition: all 0.2s ease;
}
.about-button {
  margin: auto;
  background-color: #4bd855;
  font-size: 20px;
  padding: 16px;
  text-align: center;
  margin-bottom: 4rem;
  border-radius: 19px;
  display: flex;
  font-weight: 900;
  color: white;
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
.about-button:hover {
  transform: scale(1.08);
  /* box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1); */
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 768px) {
  .products-preview .preview img {
    height: 25rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .container2 .title {
    font-size: 27px;
  }
  .title-about {
    font-size: 27px;
    margin-bottom: 3rem;
  }
  .contact-text4 {
    margin-left: 41%;
  }
  .contact-text3 {
    margin-left: 45%;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* @media (prefers-color-scheme: dark) {
  .header-main {
    background-color: #000;
  }
} */

/* NIGHT MODE */
:root {
  --white: #fff;
  --black: #444;
}

body.dark {
  --white: #444;
  --black: #fff;
}
footer {
  background-color: var(--white);
}
body {
  background-color: var(--white);
}

#toggle-btn {
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  position: fixed;
  top: 21px;
  right: 28px;
  transition: 0.2s linear;
}

#toggle-btn.fa-moon {
  transform: rotate(360deg);
}

@media only screen and (max-width: 900px) and (min-width: 500px) {
  #toggle-btn {
    position: static;
    margin-left: 487px;
  }
}
.about .container-about .title {
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
.about .container-about .about-banner {
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
.about .container-about .about-content {
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
  padding: 2rem 3rem 2rem 2rem;
}
.stats-card {
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
/* Back to top */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 3;
}
#progress-value {
  display: block !important;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
  text-align: center;
}

/* ABOUT INDEX */

:root {
  /**
   * colors
   */

  --st-patricks-blue: hsl(236, 57%, 28%);
  --royal-blue-dark: hsl(231, 68%, 21%);
  --ksu-purple: hsl(275, 54%, 33%);
  --razzmatazz: hsl(335, 87%, 51%);
  --rajah: hsl(29, 99%, 67%);

  --gradient-1: linear-gradient(90deg, #7856fd 0, #553cbb 51%, #7856fd);

  --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--rajah));

  /**
   * typography
   */

  --ff-source-sans-pro: "Source Sans Pro", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.2rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

/* .underline {
  position: relative;
}

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
} */

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
.container-about {
  padding: 0rem 2rem;
}
#imagenNuestraHistoria {
  max-width: 348px;
  border-radius: 20px;
  display: flex;
  margin: auto;
}
.about-banner {
  margin: auto;
  margin-left: 3rem;
}
.about .section-title {
  margin-inline: 0;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 2rem;
}

.about .underline::before {
  left: 50%;
  transform: translateX(50);
}

.about-text {
  font-size: var(--fs-7);
  margin-block-end: 20px;
  color: black;
}

.stats-list {
  display: grid;
  gap: 30px;
  margin-bottom: 2rem;
}

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.stats-title {
  color: #7856fd;
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text {
  font-size: var(--fs-7);
  color: black;
}
.container-about .title {
  margin-top: 1rem;
  font-size: 35px;
  color: #7856fd;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 50px;
}
/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {
  .container-about {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title {
    --fs-3: 3.6rem;
  }

  /**
   * ABOUT
   */

  .stats-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  .container-about {
    max-width: 720px;
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container-about {
    max-width: 1200px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 700px;
  }

  /**
   * ABOUT
   */

  .about .container-about {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container-about {
    max-width: 1440px;
  }

  .section-title {
    --fs-3: 4.6rem;
  }
}
@media only screen and (max-width: 500px) and (min-width: 300px) {
  #toggle-btn {
    position: static;
    margin-left: 133px;
  }
  .stats-text {
    --fs-7: 2.8rem;
  }
  .about-text {
    --fs-7: 2.2rem;
  }
  .about-banner {
    margin-left: auto;
  }
}
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 1px -1px 3px #787676;
  view-timeline-name: --products-container;
  view-timeline-axis: block;
  animation-timeline: --products-container;
  animation-name: fade;
  animation-range: entry 10% cover 30%;
  animation-fill-mode: both;
}
footer .logo {
  max-width: 100%;
  align-items: center;
}

@media only screen and (max-width: 500px) and (min-width: 300px) {
  .image-wrap {
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .text-facon {
    font-size: 23px;
    color: black;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
  }

  .images-facon {
    max-width: 345px;
    margin: auto;
    border: 3px solid #7856fd;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .image-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2%;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: auto;
    margin-bottom: 4rem;
    margin-left: 20px;
    margin-right: 20px;
  }
  .image-wrap div {
    max-width: 490px;
  }

  .text-facon {
    font-size: 23px;
    color: black;
    text-align: center;
    margin: auto;
  }

  .images-facon {
    max-width: 500px;
    margin: auto;
    border: 3px solid #7856fd;
    margin-bottom: 20px;
  }

  #text-facon1 {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
  }

  #facon1 {
    grid-column: 2 / 2;
    grid-row: 1 / 1;
  }

  #text-facon2 {
    grid-column: 2 / 2;
    grid-row: 2 / 2;
  }

  #facon2 {
    grid-column: 1 / 1;
    grid-row: 2 / 2;
  }

  #text-facon3 {
    grid-column: 1 / 1;
    grid-row: 3 / 3;
  }

  #facon3 {
    grid-column: 2 / 2;
    grid-row: 3 / 3;
  }
}
@media (min-width: 768px) {
  .lubricantes-wrap {
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: center;
    gap: 50px;
  }
  .image-sentinel {
    width: 350px;
    margin: auto;
    margin-bottom: 20px;
  }
  .titulo-sentinel {
    font-size: 30px;
    text-align: center;
    color: #e51937;
  }
  .coloum-lubricantes {
    width: 600px;
    display: flex;
    flex-direction: column;
  }
  .text-sentinel {
    font-size: 20px;
    margin: 10px 0px;
    color: black;
  }
  .ul-sentinel {
    list-style: none;
  }

  .li-sentinel::before {
    content: "\2022";
    color: #e51937;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  .li-sentinel {
    font-size: 20px;
    margin: 10px 0px;
  }
}
@media only screen and (max-width: 500px) and (min-width: 300px) {
  .lubricantes-wrap {
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    gap: 20px;
  }
  .image-sentinel {
    width: 350px;
    margin: auto;
    margin-bottom: 20px;
  }
  .titulo-sentinel {
    font-size: 30px;
    text-align: center;
    color: #e51937;
  }
  .coloum-lubricantes {
    display: flex;
    flex-direction: column;
  }
  .text-sentinel {
    font-size: 20px;
    margin: 10px 0px;
    color: black;
  }
  .ul-sentinel {
    list-style: none;
  }

  .li-sentinel::before {
    content: "\2022";
    color: #e51937;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 10px;
  }
  .li-sentinel {
    font-size: 20px;
    margin: 10px 0px;
  }
}
@media (min-width: 768px) {
  .columnas-sentinel {
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: center;
    gap: 150px;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
  .titulo-columnas-sentinel {
    font-size: 30px;
    color: black;
    text-transform: uppercase;
  }
  .columnas-tipos ul {
    list-style: none;
  }
  .columnas-tipos li {
    font-size: 20px;
    margin: 10px 0px;
  }
  .columnas-tipos li::before {
    content: "\2022";
    color: #e51937;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
}

@media only screen and (max-width: 500px) and (min-width: 300px) {
  .columnas-sentinel {
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .titulo-columnas-sentinel {
    font-size: 30px;
    color: black;
    text-transform: uppercase;
    text-align: center;
  }
  .columnas-tipos {
    width: 300px;
    display: flex;
    flex-direction: column;
    margin: auto;
  }
  .columnas-tipos ul {
    list-style: none;
  }
  .columnas-tipos li {
    font-size: 20px;
    margin: 10px 0px;
  }
  .columnas-tipos li::before {
    content: "\2022";
    color: #e51937;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
}
