@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
body {
  min-height: 120vh;
}

.btn {
  width: fit-content;
  color: #111;
  border: 1px solid #63c0dd;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 99px;
  transition: 0.5s ease-in-out;
}

/* ---------------------------Header--------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  background: #fff;
  height: fit-content;
}
header.sticky {
  background: #fff;
  height: fit-content;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
header .logo {
  margin-top: -5px;
}
header .logo > img {
  height: 55px;
}
header.sticky .logo {
  margin-top: -5px;
}
header.sticky .logo > img {
  height: 55px;
}

header.sticky .navigation li a {
  color: #111;
}
header.sticky .navigation li a:hover {
  color: #63c0dd;
}
header .navigation {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
  margin-top: 15px;
  margin-left: 30px;
}
header .navigation li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1.2em;
}
header .navigation li a:hover {
  color: #63c0dd;
}

/* ---------------------------Product - Hero--------------------- */
.product-hero {
  height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./gallery/Exterior/14.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.product-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.product-title h2 {
  font-size: 2.5em;
  font-weight: 600;
}
/* ---------------------------Product-List--------------------- */

.product-list {
  padding-top: 50px;
  padding-bottom: 50px;
}
table {
  max-width: 1260px;
  margin: 10px auto;
  width: 100%;
}

thead th {
  font-weight: 400;
  background: #63c0dd;
  color: #fff;
  width: fit-content;
}

tr {
  background: #f4f7f8;
  border-bottom: 1px solid #fff;
  margin-bottom: 5px;
}

tr:nth-child(even) {
  background: #e8eeef;
}

th,
td {
  text-align: left;
  padding: 20px;
  font-weight: 500;
}
.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}

.table th {
  background-color: #92c9e6;
  color: #ffffff;
}

.table tbody tr:nth-child(even) {
  background-color: #d1e8f5;
}

@media (max-width: 500px) {
}

/* ---------------------------Footer--------------------- */

footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #111;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
footer .container .sec {
  margin-right: 30px;
}
footer .container .sec.about-us {
  width: 40%;
}

footer .container h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .container img {
  height: 70px;
}

footer p {
  color: #fff;
}
.sci {
  margin-top: 20px;
  display: flex;
}
.sci li {
  list-style: none;
}
.sci li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  /* background: #222; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}
.sci li a:hover {
  opacity: 0.5;
}
.sci li a .fa {
  color: #fff;
  font-size: 20px;
}
.quickLinks {
  position: relative;
  width: 25%;
}
.quickLinks ul li {
  list-style: none;
}
.quickLinks ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.quickLinks ul li a:hover {
  color: #fff;
  opacity: 0.8;
}
.contact {
  width: calc(30% - 60px);
  margin-right: 0 !important;
}
.contact .info {
  position: relative;
}
.contact .info li {
  display: flex;
  margin-bottom: 16px;
}
.contact .info li span:nth-child(1) {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.contact .info li span {
  color: #999;
}
.contact .info li a {
  color: #999;
  text-decoration: none;
}
.contact .info li a:hover {
  color: #fff;
}
.copyrightText {
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  /* color: #fff !important; */
  /* z-index: 100000; */
}
.copyrightText p {
  color: #999;
}

@media (max-width: 1100px) {
  .menuToggle {
    filter: invert(0);
  }
  header,
  header.sticky {
    padding: 10px 20px;
  }
  header.sticky {
    background-color: #fff;
    height: fit-content;
    padding: 10px 10px;
  }
  header .logo {
    margin-top: 10px;
  }
  header .logo > img {
    /* background: black; */
    height: 40px;
  }
  header.sticky .logo {
    margin-top: 10px;
    height: 10px;
  }
  header.sticky .logo > img {
    /* background: black; */
    height: 40px;
    margin-top: -10px;
  }
  header .navigation {
    display: none;
  }
  header .navigation.active {
    margin-top: -10px;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 68px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
  }
  header .navigation li {
    margin-left: 0;
  }
  header.sticky .navigation li a {
    margin-top: 50px;
  }
  header .navigation li a {
    text-decoration: none;
    color: #111;
    font-size: 1.6em;
    font-weight: 300;
  }

  .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(./icons/menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s;
    filter: invert(1);
  }
  .menuToggle.active {
    background: url(./icons/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header.sticky .menuToggle {
    filter: invert(1);
  }

  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table td {
    padding-left: 50%;
    text-align: left;
    position: relative;
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }

  footer {
    padding: 40px;
  }

  footer .container {
    flex-direction: column;
  }

  footer .container .sec {
    margin-right: 0;
    margin-bottom: 40px;
  }

  footer .container .sec.aboutus,
  .quickLinks,
  .contact {
    width: 100%;
  }

  footer .container .sec.about-us {
    width: fit-content;
  }

  .copyrightText {
    padding: 8px 40px;
  }
}
@media (max-width: 680px) {
  /* table{
    overflow-x: auto;
overflow-y : hidden;
  } */
  .product-list {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media (max-width: 480px) {
  .menuToggle {
    filter: invert(1);
  }
  header.sticky {
    background-color: #fff;
    height: fit-content;
    padding: 15px 10px;
  }
  header .logo {
    margin-top: 10px;
  }
  header .logo > img {
    height: 40px;
  }
  header.sticky .logo {
    margin-top: 10px;
    height: 10px;
  }
  header.sticky .logo > img {
    height: 40px;
  }

  thead .col {
    width: fit-content;
  }

  tbody tr td {
    width: fit-content;
    min-width: 150px;
  }

  footer {
    padding: 10px;
    padding-top: 50px;
  }
  footer .container img {
    height: 50px;
  }
  .sec {
    width: 100%;
  }
  .footer .sec.about-us {
    width: 100%;
  }
}
