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

  font-family: "Montserrat", sans-serif;
}

:root {
  --cyan-color: #3ab4df;
  --grey-color: #6a6d6d;
}

.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1% 3%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-mobile {
  display: none;
}

.logo img {
  height: 50px;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
}

.navbar li {
  display: inline;
  margin: 0 10px;
}

.navbar a {
  text-decoration: none;
  color: var(--grey-color);
}

.navbar a:hover {
  color: var(--cyan-color);
}

.active {
  color: var(--cyan-color) !important;
}

li.drop-menu {
  position: relative;
}

li.drop-menu ul.drop-down {
  display: none;
  position: absolute;
  background-color: white;
  width: fit-content;
  top: 100%;
  left: 0;
  z-index: 100;
  list-style: none;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

li.drop-menu:hover .drop-down,
li.drop-menu a:hover .drop-down {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.drop-down li {
}

.drop-down li a {
  border-bottom: 1px solid var(--grey-color);
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-color);
  text-decoration: none;
  display: block;
}

.drop-down li:last-child a {
  border-bottom: none;
}

.drop-down li a:hover {
  color: var(--cyan-color);
}

/* Style for mobile view */
@media screen and (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1% 3%;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .logo img {
    height: 50px;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }

  .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--grey-color);
    margin: 5px;
  }

  .navbar-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    padding: 1rem 0;
  }

  .navbar-mobile ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .navbar-mobile li {
    display: block;
    margin: 1rem 0;
  }

  .navbar-mobile a {
    text-decoration: none;
    color: var(--grey-color);
  }

  .navbar-mobile a:hover {
    color: var(--cyan-color);
  }

  li.drop-menu {
    position: relative;
  }

  li.drop-menu ul.drop-down {
    display: none;
    position: relative;
    background-color: white;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    list-style: none;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  li.drop-menu:hover .drop-down,
  li.drop-menu a:hover .drop-down {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1% 5%;
}

.hero .image {
  width: 60%;
}

.hero .image img {
  width: 100%;
}

.hero .content {
  width: 40%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  margin: auto 0;
  padding-left: 2rem;
}

.hero .content p {
  font-size: 2.5rem;
  color: var(--grey-color);
  line-height: 3rem;
  font-weight: 200;

  font-family: "Montserrat", sans-serif;
}

.hero .content b {
  display: block;
  font-size: 3rem;
  color: var(--cyan-color);
  line-height: 4rem;
  margin: 1rem 0;
  width: 80%;
  font-weight: 700;
}

.hero .content a {
  display: block;
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  margin: 1rem 0;
  text-decoration: none;
  text-decoration: underline;
  font-weight: 200;
}

section {
  padding: 2% 5%;
}

.products .title {
  text-align: center;
  margin: 2rem 0;
}

.products .title h2 {
  font-size: 3rem;
  color: var(--grey-color);
  line-height: 4rem;
  font-weight: 300;
}

hr {
  width: 20%;
  border: 1px solid var(--grey-color);
  margin: 1rem auto;
}

.products .pview .prod-slideshow .prods {
  width: 100%;
}

.products .pview .prod-slideshow .prods .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  margin: 2rem 0;
}

.products .pview .prod-slideshow .prods .row .lt {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.products .pview .prod-slideshow .prods .row .lt .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.products .pview .prod-slideshow .prods .row .lt .title h3 {
  font-size: 2rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 300;
}

.products .pview .prod-slideshow .prods .row .lt .title .logo img {
  height: 50px;
}

.products .pview .prod-slideshow .prods .row .lt .desc {
  width: 100%;
  text-align: justify;
  margin: 0.5rem 0;
}

.products .pview .prod-slideshow .prods .row .lt .desc p {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 200;
}

.products .pview .prod-slideshow .prods .row .lt a {
  display: block;
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  margin: 1rem 0;
  text-decoration: none;
  text-decoration: underline;
  font-weight: 300;
}

.products .pview .prod-slideshow .prods .row .rt {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.products .pview .prod-slideshow .prods .row .rt .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.products .pview .prod-slideshow .prods .row .rt .title h3 {
  font-size: 2rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 300;
}

.products .pview .prod-slideshow .prods .row .rt .title .logo img {
  height: 50px;
}

.products .pview .prod-slideshow .prods .row .rt .desc {
  width: 100%;
  text-align: justify;
  margin: 0.5rem 0;
}

.products .pview .prod-slideshow .prods .row .rt .desc p {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 200;
}

.products .pview .prod-slideshow .prods .row .rt a {
  display: block;
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  margin: 1rem 0;
  text-decoration: none;
  text-decoration: underline;
  font-weight: 300;
}

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

.brands .title h2 {
  font-size: 3rem;
  color: var(--grey-color);
  line-height: 4rem;
  font-weight: 300;
}

.brands .brandsimg {
  width: 100%;
  margin: 2rem 0;
}

.brands .brandsimg img {
  width: 100%;
}

.years {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-color: #f7f7f7;
  padding: 3rem 0;
}

.years img {
  width: 10%;
}

.years h2 {
  font-size: 2rem;
  color: var(--cyan-color);
  line-height: 3rem;
  font-weight: 700;
  margin: 2rem 0;
}

.years p {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 200;
  margin: 1rem 0;
  width: 80%;
}

.years a {
  display: block;
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  margin: 1rem 0;
  text-decoration: none;
  text-decoration: underline;
  font-weight: 300;
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 2% 5%;
  background-color: #fff;
  /* Adjust color as needed */
}

.footer-section {
  width: 25%;
}

.footer-section img {
  height: 50px;
}

.footer-section p {
  color: var(--grey-color);
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 200;
  margin: 2rem 0;
  /* Adjust color as needed */
}

.footer-section-3 {
  width: 70%;
  padding: 0% 5%;
}

.footer-section-3 .links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer-section-3 ul li {
  list-style-type: none;
}

.footer-section-3 ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 200;
}

.footer-section-3 ul li a:hover {
  color: var(--cyan-color);
}

form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

/* Style for subscription form */
form input[type="email"] {
  padding: 1rem;
  width: 70%;
  border: 1px solid var(--grey-color);
  background-color: none;
}

form button[type="submit"] {
  padding: 1rem 1rem;
  color: var(--cyan-color);
  background-color: #fff;
  border: 1px solid var(--grey-color);
  width: 30%;
  height: 100%;
}

form button[type="submit"]:hover {
  background-color: var(--cyan-color);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero .image {
    width: 100%;
  }

  .hero .content {
    width: 100%;
    padding: 0;
    margin: 2rem 0;
    align-items: center;
  }

  .hero .content p {
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
  }

  .hero .content b {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
    width: 100%;
  }

  .hero .content a {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    width: 100%;
  }

  .products .pview .prod-slideshow .prods .row {
    flex-direction: column;
  }

  .products .pview .prod-slideshow .prods .row .lt {
    width: 100%;
    align-items: center;
  }

  .products .pview .prod-slideshow .prods .row .lt .title {
  }

  .products .pview .prod-slideshow .prods .row .lt .title h3 {
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
  }

  .products .pview .prod-slideshow .prods .row .lt .title .logo img {
    height: 50px;
  }

  .products .pview .prod-slideshow .prods .row .lt .desc {
    width: 100%;
    text-align: justify;
    margin: 0.5rem 0;
  }

  .products .pview .prod-slideshow .prods .row .lt .desc p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .products .pview .prod-slideshow .prods .row .lt a {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    width: 100%;
  }

  .products .pview .prod-slideshow .prods .row .rt {
    width: 100%;
    align-items: center;
  }

  .products .pview .prod-slideshow .prods .row .rt .title {
  }

  .products .pview .prod-slideshow .prods .row .rt .title h3 {
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
  }

  .products .pview .prod-slideshow .prods .row .rt .title .logo img {
    height: 50px;
  }

  .products .pview .prod-slideshow .prods .row .rt .desc {
    width: 100%;
    text-align: justify;
    margin: 0.5rem 0;
  }

  .products .pview .prod-slideshow .prods .row .rt .desc p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .products .pview .prod-slideshow .prods .row .rt a {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
    width: 100%;
  }

  .brands .brandsimg {
    width: 100%;
    margin: 2rem 0;
  }

  .brands .brandsimg img {
    width: 100%;
  }

  .years img {
    width: 20%;
  }

  .years h2 {
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
    margin: 2rem 0;
  }

  .years p {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    width: 100%;
  }

  .years a {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
    width: 100%;
  }

  footer {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2% 5%;
    background-color: #fff;
    /* Adjust color as needed */
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .footer-section img {
    height: 50px;
  }

  .footer-section p {
    color: var(--grey-color);
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 200;
    margin: 2rem 0;
    /* Adjust color as needed */
  }

  .footer-section-3 {
    width: 100%;
    padding: 0% 5%;
  }

  .footer-section-3 .links {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .footer-section-3 ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 45%;
  }

  .footer-section-3 ul li {
    list-style-type: none;
  }

  .footer-section-3 ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 200;
  }

  .footer-section-3 ul li a:hover {
    color: var(--cyan-color);
  }

  form {
    flex-direction: column;
    align-items: center;
  }

  form input[type="email"] {
    padding: 1rem;
    width: 100%;
    border: 1px solid var(--grey-color);
    background-color: none;
  }

  form button[type="submit"] {
    padding: 1rem 1rem;
    color: var(--cyan-color);
    background-color: #fff;
    border: 1px solid var(--grey-color);
    width: 100%;
    height: 100%;
  }

  form button[type="submit"]:hover {
    background-color: var(--cyan-color);
    color: #fff;
  }
}

.breadcrum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 5%;
  background-color: #f7f7f7;
}

.breadcrum .title {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 300;

  width: 40%;
}

.breadcrum .title h2 {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 300;
}

.breadcrum .title h2 span {
  color: var(--cyan-color);
}

.breadcrum .content {
  width: 60%;
}

.breadcrum .content .link-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
  .breadcrum .content {
    display: none;
  }
}

.breadcrum .content .link-logos a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
}

.breadcrum .content .link-logos a img {
  height: 35px;
  width: 35px;
}

.vmg {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2% 5%;
}

.vmg .ele {
  width: 25%;
}

.vmg .ele h2 {
  font-size: 1.5rem;
  color: var(--cyan-color);
  line-height: 2rem;
  font-weight: 500;
  margin: 0;
}

.vmg .ele h3 {
  font-size: 1.5rem;
  color: var(--grey-color);
  line-height: 2rem;
  font-weight: 400;
  margin: 1rem 0;
}

.vmg .ele p {
  font-size: 1rem;
  color: var(--grey-color);
  line-height: 1.5rem;
  font-weight: 300;
  margin: 1rem 0;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .vmg {
    flex-direction: column;
  }

  .vmg .ele {
    width: 100%;
    margin: 1rem 0;
  }
}
