* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  color: var(--textColor);
}

:root {
  --primaryColor: #27aae1;
  --textColor: #515a60;
}

nav {
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}

.nav-margin {
  margin-top: 8em;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.ang-logo {
  width: 20em;
}
.ang-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.wide-menu {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.small-section {
  display: flex;
  justify-content: flex-end;
  margin-right: 15em;
  margin-top: 1em;
  list-style: none;
}
.small-section li {
  margin: 0 0.5em;
}
.small-section li:hover {
  color: var(--primaryColor);
  cursor: pointer;
}
.small-section li:hover a {
  color: var(--primaryColor);
}

.big-section {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  margin-left: 15em;
}
.big-section li {
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.big-section li:hover {
  color: var(--primaryColor);
  font-weight: 600;
}
.big-section li:hover a {
  color: var(--primaryColor);
}

.nav-search input {
  background-color: rgba(39, 169, 225, 0.5019607843);
  border: none;
  border-radius: 20px;
  border: 2px dotted var(--primaryColor);
  width: 10em;
  font-size: 0.9rem;
  padding: 0.2em 1em;
}
.nav-search input:focus {
  outline: none;
}
.nav-search i {
  color: var(--primaryColor);
  align-self: center;
  margin-left: 0.2em;
}

.global-btn {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

.hamburger-menu {
  display: none;
}

.home-cont {
  width: 100%;
}

.center-text {
  padding: 2em;
  text-align: center;
  width: 100%;
  font-size: 1.5rem;
}

/* Center the footer content horizontally and align vertically */
footer {
  background-color: #e2e2e2;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text within elements */
  padding: 1em 0; /* Adjust padding as needed */
}

/* Styles for the footer content container */
.footer-content {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center content horizontally */
  gap: 1em; /* Adjust spacing between elements as needed */
}

/* Center the social media icons horizontally */
.fb-insta-icons {
  margin-left: 1.9em;
  font-size: 2.5rem;
  display: flex;
  justify-content: center; /* Center icons horizontally */
  gap: 1rem; /* Adjust spacing between icons as needed */
}

/* Styles for each social media icon and its text */
.fb-insta-icons a {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center text vertically */
  text-align: center; /* Center text horizontally */
}
.fb-insta-icons a i {
  color: var(--primaryColor);
}

/* Styles for the showroom addresses */
.addresses-nbr {
  display: flex; /* Display addresses in a row */
  align-items: center; /* Center addresses vertically */
  gap: 5em;
  /* Adjust spacing between addresses as needed */
}

/* Center-align the second location text */
.addresses-nbr .addr-each {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center text vertically */
  text-align: center; /* Center text horizontally */
}
.addresses-nbr .addr-each h4 {
  color: var(--primaryColor);
  padding: 0.5em 0;
}

.addr-each {
  margin-bottom: 3em;
}
.addr-each h4 {
  color: var(--primaryColor);
  padding: 0.5em 0;
}

.trms-conds-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.trms-conds-cont a {
  padding: 1em 3em;
}
.trms-conds-cont p {
  color: var(--primaryColor);
}

.main-heading {
  color: var(--primaryColor);
  font-size: 3rem;
  text-align: center;
  padding: 1em;
  text-transform: uppercase;
  font-weight: 400;
}

.categ-cont {
  width: 100%;
  background-color: var(--primaryColor);
}

.categ-part {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: var(--primaryColor);
}
.categ-part a {
  height: 50vh;
  width: 33.33%;
}

.categ-each {
  background-color: transparent;
  position: relative;
  height: 100%;
  width: 100%;
}
.categ-each .above-img {
  position: absolute;
  visibility: 0;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
}
.categ-each:hover .above-img {
  background-color: var(--primaryColor);
  opacity: 0.4;
  visibility: 1;
}
.categ-each:hover .above-text {
  background-color: rgba(39, 169, 225, 0.7490196078);
}
.categ-each img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--primaryColor);
}

.above-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background-color: rgba(39, 169, 225, 0.537254902);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.above-text h2 {
  color: white;
  text-shadow: 3px 3px 3px rgb(73, 72, 72);
  font-size: 2rem;
}
.above-text i {
  font-size: 2.5rem;
  color: white;
}

.categ-all {
  background-color: var(--primaryColor);
  display: flex;
  justify-content: end;
  align-items: center;
  height: 10vh;
  width: 100%;
}
.categ-all a {
  color: white;
  height: 100%;
  width: 100%;
  display: flex;
  text-decoration: none;
  font-size: 2rem;
  justify-content: end;
  align-items: center;
  margin-right: 1em;
}
.categ-all a i {
  font-size: 2rem;
  color: white;
  padding: 0 0.5em;
}

.serv-cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.serv-each {
  width: 33.33%;
  height: 35vh;
  position: relative;
}
.serv-each:hover .serv-img-blur {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}
.serv-each img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.serv-each h3 {
  position: absolute;
  top: 38%;
  bottom: 38%;
  left: 30%;
  right: 30%;
  color: white;
  font-size: 2rem;
  text-shadow: 3px 3px 3px rgb(73, 72, 72);
}
.serv-each .serv-img-blur {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(39, 169, 225, 0.5137254902);
}

.latest-cont {
  width: 100%;
  height: 100vh;
  display: flex;
}

.latest-main {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--textColor);
}
.latest-main .latest-main-cont {
  width: 100%;
  height: 100%;
}
.latest-main img {
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-text-cont {
  padding: 1em;
  position: relative;
  text-align: center;
}
.latest-text-cont h2 {
  color: var(--primaryColor);
  margin-bottom: 1em;
}
.latest-text-cont p {
  margin-bottom: 1em;
  height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
}
.latest-text-cont i {
  font-size: 2rem;
}
.latest-text-cont .triangle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: white;
  transform: rotate(45deg);
}

a {
  text-decoration: none;
}

.flex-column-sub {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
}

.latest-sub {
  width: 100%;
  height: 33.33333%;
  display: flex;
  flex-direction: row;
  border: 1px solid var(--textColor);
}
.latest-sub .latest-sub-cont {
  display: flex;
  width: 100%;
  height: 100%;
}
.latest-sub img {
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-sub .latest-text-cont-sub {
  width: 60%;
  height: 100%;
}
.latest-sub .latest-text-cont-sub p {
  margin-bottom: 1em;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.latest-sub .latest-text-cont-sub .triangle-sub {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: -15px;
  background-color: white;
  transform: rotate(45deg);
}

.ntw-cont {
  display: flex;
  width: 100%;
  height: 60vh;
  gap: 2%;
  margin-bottom: 4em;
}

.ntw-each {
  width: 35em;
  height: 100%;
  margin-left: 1em;
  z-index: 1;
  position: relative;
  background-color: var(--primaryColor);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ntw-each .white-bgn {
  background-color: white;
  width: 100%;
  height: 10%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ntw-each img {
  height: 75%;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}

.ntw-text {
  color: white;
  text-align: center;
  height: 25%;
}
.ntw-text h2 {
  color: white;
  margin: 0.5em;
}
.ntw-text p {
  color: white;
  margin: 0.5em;
}

.move-up-arrow {
  width: 100%;
  height: 2em;
  text-align: end;
  margin-bottom: 2em;
}
.move-up-arrow img {
  height: 2em;
  width: 2em;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 3em;
  margin-bottom: 2em;
}

.carousel-text {
  position: absolute;
  top: 50px;
  right: 100px;
  text-align: center;
}
.carousel-text h2 {
  color: var(--primaryColor);
  font-size: 2rem;
  margin-bottom: 1em;
  text-shadow: 0.5px 0.5px 3px var(--textColor);
}
.carousel-text h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 2em;
  text-shadow: 0.5px 0.5px 3px var(--textColor);
}
.carousel-text .download-carousel {
  padding: 0.5em 1em;
  border: none;
  border-radius: 5px;
  background-color: rgba(39, 169, 225, 0.462745098);
  color: white;
  font-size: 1.5rem;
}

.loc-image {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin: 1em 0;
}
.loc-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.loc-image img:hover {
  transform: scale(1.1);
  transition: transform 1000ms ease-in-out;
}

.abt-us-info-cont {
  padding: 6em 10em;
}
.abt-us-info-cont h1 {
  color: var(--primaryColor);
  margin-bottom: 1em;
}

.main-btn {
  color: white;
  margin: 2em 1em;
  background-color: var(--primaryColor);
  padding: 0.5em 1em;
  border-radius: 10px;
}

.order-list {
  margin-bottom: 2em;
  margin-top: 2em;
}
.order-list span {
  color: var(--primaryColor);
  padding-right: 0.5em;
}
.order-list h2 {
  margin: 0.5em;
}
.order-list p {
  padding-left: 1em;
  margin: 1em 0;
}

.styled-text {
  text-shadow: 0.5px 0.5px 3px var(--textColor);
  color: var(--primaryColor);
}

.text-left-mg {
  margin: 4em 5em;
  position: relative;
}
.text-left-mg span {
  font-size: 1rem;
  margin: 0 0.5em;
  font-weight: 500;
  position: absolute;
  bottom: 0px;
  color: var(--primaryColor);
}

.ang-subs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ang-subs .main-sub-abt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ang-subs .main-sub-abt img {
  width: 80%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.many-subs {
  display: flex;
  margin: 1em;
  gap: 0.5em;
}

.sub-w {
  width: 30em;
  height: 8em;
  background-color: #127cad;
}

.sub-w1 {
  width: 20em;
  height: 8em;
  background-color: #a6a6a6;
}

.sub-w2 {
  width: 20em;
  height: 8em;
  background-color: #d9d9d9;
}

.ang-brands {
  width: 100%;
  margin: 2em 0;
}

.main-ang-brands {
  width: 100%;
  height: 40vh;
  display: flex;
}
.main-ang-brands img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-ang-brands {
  width: 100%;
  height: 40vh;
  display: flex;
}
.sub-ang-brands img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.continue-next-cont {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.continue-next-cont .continue-latest {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.continue-next-cont .continue-latest .latest-sub {
  height: 33vh;
}

.first-heading {
  color: var(--primaryColor);
  margin: 5em 0em 2em 4em;
}
.first-heading span {
  margin-left: 2em;
  font-size: 1.7rem;
  cursor: pointer;
}
.first-heading span i {
  color: var(--primaryColor);
}

.head-js .categories {
  margin: 2em 0 4em 2em;
  list-style: none;
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  display: none;
}
.head-js .open-categ {
  display: grid;
}

.products-cont .categ-cont {
  height: auto;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* The Modal (background) */
.modalChosen {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--primaryColor);
  margin: 10% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  color: white;
  height: 70vh;
  width: 80%;
  border-radius: 10px;
  display: flex;
  position: relative;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: white;
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.project-imgs {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prj-main-img {
  width: 100%;
  height: 75%;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
}
.prj-main-img img {
  border-radius: 10px;
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prj-small-imgs {
  width: 100%;
  height: 25%;
  display: flex;
  gap: 1em;
  justify-content: center;
}
.prj-small-imgs img {
  border-radius: 5px;
  width: 18%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prj-text {
  width: 40%;
  height: 100%;
  text-align: center;
}
.prj-text h1 {
  color: white;
  font-size: 2rem;
  padding: 1em 2em;
}
.prj-text p {
  color: white;
}

.filters {
  margin: 2em 0 3em 4em;
}
.filters h2 {
  color: var(--primaryColor);
  margin: 1em 0;
}

.filter-each {
  width: 80%;
  display: flex;
  justify-content: space-around;
}

.filter {
  cursor: pointer;
}
.filter p {
  border: 1px solid var(--primaryColor);
  padding: 1em 2em;
  border-radius: 10px;
}
.filter p i {
  margin-left: 1em;
  color: var(--primaryColor);
}

.prod-list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  width: 100%;
}

.prod-each {
  width: 20em;
  height: 40vh;
  margin-left: 2em;
}

.image-spec-cont {
  width: 100%;
  height: 75%;
  position: relative;
  border-radius: 10px;
}
.image-spec-cont:hover .specs {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}
.image-spec-cont img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-spec-cont .specs {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  top: 0;
  background-color: rgba(0, 0, 0, 0.452);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image-spec-cont .specs h4 {
  color: white;
  margin-bottom: 0.5em;
}
.image-spec-cont .specs p {
  color: white;
}

.prod-other-part {
  width: 100%;
  height: 25%;
  z-index: 4;
  display: flex;
  justify-content: center;
}

.prod-name {
  width: 80%;
  height: 100%;
  background-color: var(--primaryColor);
  overflow: hidden;
  border-radius: 10px;
  padding: 0.5em 0.9em;
  z-index: 4;
  transform: translateY(-30%);
  cursor: pointer;
}
.prod-name h3 {
  color: white;
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
.prod-name p {
  color: white;
  font-size: 0.6rem;
}

/* The Modal (background) */
.modalProduct {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modalProductChosen {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-contentProduct {
  background-color: white;
  margin: 8% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  color: var(--primaryColor);
  height: 80vh;
  width: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closeProduct {
  color: var(--primaryColor);
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.closeProduct:hover,
.closeProduct:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.closeProductChosen {
  color: var(--primaryColor);
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.closeProductChosen:hover,
.closeProductChosen:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.product-modal-all {
  width: 100%;
  height: 60%;
  display: flex;
}

.product-imgs {
  width: 50%;
  height: 100%;
}

.prod-main-img {
  width: 100%;
  height: 75%;
  display: flex;
  justify-content: center;
  margin: 0.5em 0;
}
.prod-main-img img {
  width: 70%;
  height: 100%;
}

.prod-small-imgs {
  height: 25%;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
}
.prod-small-imgs img {
  width: 7em;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}

.prod-next-to-img {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1em;
}

.prod-text {
  margin: 1em 0;
  height: 50%;
}
.prod-text h1 {
  color: var(--primaryColor);
}
.prod-text p {
  margin: 0.5em 0;
}

.prod-box {
  border: 1px dashed var(--primaryColor);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill);
}
.prod-box h4 {
  margin: 0.5em;
}
.prod-box p {
  margin: 0.5em;
}
.prod-box .color-picker {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0.5em;
}
.prod-box .color-picker .picked-color {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
}

.prod-long-desc {
  height: 40%;
  overflow: auto;
  margin: 1em 0.5em;
}

.share-item {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.5em 0;
}
.share-item h4 {
  color: var(--primaryColor);
  margin: 0 0.5em;
  font-size: 1.5rem;
}
.share-item i {
  color: var(--primaryColor);
  margin: 0 0.5em;
  font-size: 1.5rem;
}

.request-btn {
  width: 100%;
  text-align: center;
}
.request-btn button {
  padding: 0.5em 1em;
  background-color: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
}

.brands-cont h3 {
  margin: 0em 0em 2em 7em;
  width: 70%;
}

.brands-list {
  margin: 0em 0em 2em 7em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2em;
}

.brands-each {
  width: 15em;
  height: 30vh;
  border: 2px solid var(--primaryColor);
  border-radius: 10px;
  cursor: pointer;
}
.brands-each img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.modal-brand-img {
  padding: 1em;
  width: 50%;
  height: 80%;
  border-radius: 10px;
}
.modal-brand-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.modal-brand-text {
  padding: 1em;
  width: 60%;
}
.modal-brand-text h3 {
  color: white;
  font-size: 1.5rem;
  height: 10%;
}
.modal-brand-text p {
  color: white;
  height: 70%;
  overflow: auto;
}

/* The Modal (background) */
.modalBrand {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-contentBrand {
  background-color: var(--primaryColor);
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  color: white;
  height: 50vh;
  width: 60%;
  border-radius: 10px;
  display: flex;
  position: relative;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closeBrand {
  color: white;
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.closeBrand:hover,
.closeBrand:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* The Modal (background) */
.modalService {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modalServiceChosen {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-contentService {
  background-color: var(--primaryColor);
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  color: white;
  height: 50vh;
  width: 60%;
  border-radius: 10px;
  display: flex;
  position: relative;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closeService {
  color: white;
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.closeService:hover,
.closeService:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.services-cont {
  margin-bottom: 2em;
}

.showrooms-cont {
  margin-bottom: 4em;
}

.showrooms-double {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.each-showroom {
  height: 40vh;
  width: 50%;
  display: flex;
  padding: 1em;
  border: 1px solid var(--primaryColor);
}

.left-section {
  width: 40%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.left-section h1 {
  color: var(--primaryColor);
}

.right-section {
  width: 60%;
  height: 100%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.address-tel-sect {
  margin: 1em 0;
}
.address-tel-sect h2 i {
  color: var(--primaryColor);
}
.address-tel-sect p {
  padding-left: 1.5em;
}

.email-sect {
  margin: 1em 0;
}
.email-sect h2 {
  color: var(--primaryColor);
}
.email-sect h2 i {
  color: var(--primaryColor);
}
.email-sect p a {
  color: var(--primaryColor);
  padding-left: 1.5em;
}

.quotations-cont h3 {
  margin: 1em 0em 1em 5em;
  width: 70%;
}
.quotations-cont ol {
  margin: 1em 0em 3em 5em;
}
.quotations-cont ol li {
  margin: 0.5em 0;
}

.quote-cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.each-quote {
  display: flex;
  width: 90%;
  height: 40vh;
  margin-bottom: 3em;
  justify-content: space-between;
}

.quote-imgs {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 25%;
  height: 100%;
  border: 1px solid var(--primaryColor);
  border-radius: 10px;
}

.main-quote-img {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
}
.main-quote-img img {
  width: 80%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--primaryColor);
}

.small-quote-imgs {
  display: flex;
  width: 100%;
  height: 24%;
  justify-content: center;
  gap: 0.5em;
}
.small-quote-imgs img {
  width: 6em;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--primaryColor);
}

.main-specs {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.main-specs h1 {
  color: var(--primaryColor);
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-bottom: 0.5em;
}
.main-specs p {
  margin-bottom: 0.5em;
}
.main-specs ul {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill);
}
.main-specs ul li {
  margin-bottom: 0.5em;
}

.sub-specs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sub-specs ul {
  display: grid;
  margin: 2.5em 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill);
  list-style: none;
}
.sub-specs ul li {
  margin-bottom: 0.5em;
}
.sub-specs .color-picked {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--primaryColor);
}

.quantity-specs p {
  margin-top: 2.5em;
  margin-bottom: 1em;
}
.quantity-specs .quantity-input {
  width: 2em;
}
.quantity-specs i {
  font-size: 2rem;
  color: var(--primaryColor);
}
.quantity-specs i:hover {
  color: red;
}

.move-back-arrow {
  margin: 1em 0em 1em 4em;
}
.move-back-arrow a i {
  color: var(--primaryColor);
  font-size: 2rem;
}

.sub-btn-quote {
  display: flex;
  margin-bottom: 4em;
  margin-left: 70%;
}
.sub-btn-quote button {
  padding: 0.5em 1em;
  background-color: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
}

.contact-us-cont p {
  margin: 1em 1em 3em 5em;
}

.input-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-flex {
  display: flex;
  margin-left: 5em;
  width: 70%;
  justify-content: space-between;
}

.sect-input {
  display: flex;
  width: 30%;
  flex-direction: column;
  justify-content: space-between;
}

.input-div {
  margin-bottom: 2em;
}
.input-div label {
  display: block;
  margin-bottom: 0.5em;
}
.input-div input {
  width: 100%;
  border: none;
  border: 1px solid var(--primaryColor);
  padding: 0.3em 0.5em;
}
.input-div input:focus {
  outline: none;
}
.input-div textarea {
  width: 100%;
  border: 1px solid var(--primaryColor);
  padding: 0.3em 0.5em;
}
.input-div textarea:focus {
  outline: none;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5em;
  margin: 4em 4em;
}

.catalog-each {
  display: flex;
  flex-direction: column;
  width: 23em;
  height: 70vh;
}

.catalog-img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 0.5em;
}
.catalog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog-text h3 {
  margin-bottom: 0.5em;
}
.catalog-text p {
  margin-bottom: 0.5em;
}
.catalog-text a {
  margin-bottom: 0.5em;
  text-decoration: underline;
  font-size: 1.5rem;
}

/* The Modal (background) */
.modalLogin {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 900;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-contentLogin {
  background-color: var(--primaryColor);
  margin: 10% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  color: white;
  height: 70vh;
  width: 60%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.closeLogin {
  color: white;
  float: right;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
}

.closeLogin:hover,
.closeLogin:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.sign-in {
  margin: 1em;
}
.sign-in label {
  color: white;
  margin-left: 1em;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.sign-in-cont {
  padding: 0 1em;
  display: block;
}
.sign-in-cont h2 {
  color: white;
  font-size: 1.7rem;
  margin: 1em 2em;
}
.sign-in-cont .input-div {
  margin-left: 1em;
}
.sign-in-cont .input-div .login-input {
  width: 40%;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  border: none;
  font-size: 1.5rem;
}
.sign-in-cont .input-div .login-input:focus {
  outline: none;
}

.login-label {
  color: white;
}

.forgot-pass {
  display: block;
  color: white;
  text-decoration: underline;
}

.no-account {
  padding: 0 1em;
}
.no-account form {
  width: 100%;
  height: 100%;
}

.regist-cont {
  display: none;
  height: 70%;
  overflow: auto;
  padding-right: 1em;
}

.regist-input {
  margin-bottom: 2em;
}
.regist-input label {
  color: white;
  margin-left: 1em;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.display-flex-cont {
  display: flex;
  margin: 0em 0;
  gap: 2em;
}
.display-flex-cont .input-div {
  margin-left: 1em;
}
.display-flex-cont .input-div .regist-each-input {
  width: 100%;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  border: none;
  font-size: 1.5rem;
}
.display-flex-cont .input-div .regist-each-input:focus {
  outline: none;
}
.display-flex-cont .input-div .regist-label {
  color: white;
}

.create-account-btn {
  padding: 0.5em 1em;
  cursor: pointer;
  border: none;
  background-color: white;
  color: var(--primaryColor);
  font-size: 1.5rem;
  border-radius: 5px;
  margin-left: 40%;
}

.just-text-no-btn {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.just-text-no-btn:hover {
  color: red;
}

#myBtnLogin:hover {
  cursor: pointer;
}

.filters-pop {
  margin: 2em 0 4em 2em;
  list-style: none;
  -moz-column-gap: 2em;
       column-gap: 2em;
  row-gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  display: none;
}
.filters-pop li {
  font-size: 1.2rem;
  font-weight: 500;
}

.open-filter {
  display: grid;
}

@media only screen and (max-width: 1300px) {
  .hamburger-menu {
    height: 100vh;
    display: block;
    position: absolute;
    right: 0;
    width: 50%;
    background-color: white;
    transform: translateX(100%);
    transition-property: transform;
    transition-duration: 1000ms;
    transition-timing-function: ease-in-out;
  }
  #ham-menu {
    margin-right: 1em;
    transform: translateX(-250%) rotate(0deg);
    transition-property: transform;
    transition-duration: 1000ms;
    transition-timing-function: ease-in-out;
    margin-top: 1em;
    font-size: 1.7rem;
  }
  .open-menu {
    transform: translateX(0);
  }
  .open-menu #ham-menu {
    transform: translateX(200%) rotate(90deg);
  }
  .wide-menu {
    display: none;
  }
  .ang-logo {
    align-self: flex-start;
  }
  .nav-cont {
    padding: 2em 0;
  }
  .nav-search {
    width: 100%;
    margin-bottom: 2em;
    text-align: center;
  }
  .nav-search input {
    width: 50%;
    font-size: 1.3rem;
    border: none;
    border: var(--primaryColor);
    box-shadow: 2px 5px 10px 4px rgba(77, 75, 75, 0.72);
    -webkit-box-shadow: 2px 5px 10px 4px rgba(77, 75, 75, 0.72);
    -moz-box-shadow: 2px 5px 10px 4px rgba(77, 75, 75, 0.72);
  }
  .nav-search input:focus {
    outline: none;
  }
  .nav-search i {
    font-size: 1.5rem;
  }
  .ham-list {
    list-style: none;
    padding: 0;
  }
  .ham-list li {
    margin: 0.5em;
    font-size: 1.5rem;
    text-align: center;
  }
  .ham-list li:hover {
    color: var(--primaryColor);
    font-weight: 600;
    background-color: rgba(171, 173, 175, 0.368627451);
  }
  .ham-list li:hover a {
    color: var(--primaryColor);
  }
}
@media (max-height: 750px) and (max-width: 1200px) {
  .main-heading {
    font-size: 1.8rem;
  }
  .first-heading {
    font-size: 1.6rem;
  }
  .categ-all {
    height: 8vh;
  }
  .categ-all a {
    font-size: 1.5rem;
  }
  .categ-all a i {
    font-size: 1.5rem;
  }
  .home-cont .carousel {
    height: 60vh;
  }
  .about-us-cont .carousel {
    height: 60vh;
  }
  .products-cont .carousel {
    height: 60vh;
  }
  .catalog-cont .carousel {
    height: 60vh;
  }
  .services-cont .carousel {
    height: 60vh;
  }
  .services-cont .serv-each {
    cursor: pointer;
  }
  .categ-part a {
    height: 40vh;
  }
  .above-text h2 {
    font-size: 1.4rem;
  }
  .ntw-cont {
    height: 50vh;
  }
  .latest-text-cont h2 {
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .serv-each h3 {
    left: 22%;
  }
  .center-text {
    padding: 1em 2em;
  }
  .center-text h4 {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .serv-cont {
    height: 120vh;
  }
  .serv-each {
    height: 30vh;
  }
  .serv-each h3 {
    padding: 0.5em 1em;
  }
  .latest-text-cont p {
    height: 130px;
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }
  .loc-image {
    height: 55vh;
  }
  .abt-us-info-cont {
    padding: 4em 5em;
  }
  .abt-us-info-cont h1 {
    font-size: 1.6rem;
  }
  .styled-text {
    margin: 0 2.5em;
  }
  .sub-w {
    width: 20em;
    height: 6em;
  }
  .sub-w1 {
    width: 15em;
    height: 6em;
  }
  .sub-w2 {
    width: 12em;
    height: 6em;
  }
  .main-ang-brands {
    height: 30vh;
  }
  .sub-ang-brands {
    height: 30vh;
  }
  .left-section h1 {
    font-size: 1.3rem;
  }
  .address-tel-sect h2 {
    font-size: 1rem;
  }
  .email-sect h2 {
    font-size: 1rem;
  }
  .showrooms-double {
    height: 35vh;
  }
  .filter p {
    padding: 0.5em 1em;
  }
  .filter p i {
    margin-left: 0;
  }
  .prod-each {
    width: 15em;
    height: 35vh;
  }
  .prod-name h3 {
    font-size: 0.65rem;
  }
  .modal-contentProduct {
    margin: 12% auto;
  }
  .modal-contentLogin {
    margin: 14% auto;
    height: 75vh;
  }
  .modal-brand-img {
    width: 50%;
  }
  .each-quote {
    height: 30vh;
  }
  .small-quote-imgs img {
    width: 4em;
  }
  .catalog-each {
    height: 50vh;
    width: 15em;
  }
  .catalog-list {
    gap: 3em;
  }
  .carousel-text h2 {
    font-size: 1.3rem;
  }
  .carousel-text .download-carousel {
    font-size: 1.3rem;
  }
  .display-flex-cont .input-div {
    margin-bottom: 0.5em;
  }
  .regist-input {
    margin-bottom: 0.5em;
  }
  .display-flex-cont .input-div .regist-each-input {
    font-size: 1rem;
  }
  .sign-in-cont .input-div .login-input {
    font-size: 1rem;
  }
  .create-account-btn {
    font-size: 1rem;
  }
  .modal-brand-text h3 {
    margin: 1em;
  }
}
@media only screen and (max-width: 1200px) {
  .main-heading {
    font-size: 1.8rem;
  }
  .first-heading {
    font-size: 1.6rem;
  }
  .categ-all {
    height: 8vh;
  }
  .categ-all a {
    font-size: 1.5rem;
  }
  .categ-all a i {
    font-size: 1.5rem;
  }
  .home-cont .carousel {
    height: 60vh;
  }
  .about-us-cont .carousel {
    height: 60vh;
  }
  .products-cont .carousel {
    height: 60vh;
  }
  .catalog-cont .carousel {
    height: 60vh;
  }
  .services-cont .carousel {
    height: 60vh;
  }
  .services-cont .serv-each {
    cursor: pointer;
  }
  .categ-part a {
    height: 30vh;
  }
  .above-text h2 {
    font-size: 1.4rem;
  }
  .ntw-cont {
    height: 50vh;
  }
  .latest-text-cont h2 {
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .serv-each h3 {
    left: 17%;
  }
  .center-text {
    padding: 1em 2em;
  }
  .center-text h4 {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .serv-cont {
    height: 120vh;
  }
  .serv-each {
    height: 30vh;
  }
  .serv-each h3 {
    padding: 0.5em 1em;
  }
  .latest-text-cont p {
    height: 130px;
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }
  .loc-image {
    height: 55vh;
  }
  .abt-us-info-cont {
    padding: 4em 5em;
  }
  .abt-us-info-cont h1 {
    font-size: 1.6rem;
  }
  .styled-text {
    margin: 0 2.5em;
  }
  .sub-w {
    width: 20em;
    height: 6em;
  }
  .sub-w1 {
    width: 15em;
    height: 6em;
  }
  .sub-w2 {
    width: 12em;
    height: 6em;
  }
  .main-ang-brands {
    height: 30vh;
  }
  .sub-ang-brands {
    height: 30vh;
  }
  .left-section h1 {
    font-size: 1.3rem;
  }
  .address-tel-sect h2 {
    font-size: 1rem;
  }
  .email-sect h2 {
    font-size: 1rem;
  }
  .showrooms-double {
    height: 35vh;
  }
  .filter p {
    padding: 0.5em 1em;
  }
  .filter p i {
    margin-left: 0;
  }
  .prod-each {
    width: 15em;
    height: 35vh;
  }
  .prod-name h3 {
    font-size: 0.65rem;
  }
  .modal-contentProduct {
    margin: 12% auto;
  }
  .modal-contentLogin {
    margin: 14% auto;
  }
  .modal-content {
    margin: 17% auto;
  }
  .prj-main-img {
    height: 50%;
  }
  .modal-brand-img {
    width: 50%;
  }
  .prj-small-imgs {
    height: 15%;
  }
  .prj-small-imgs img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .each-quote {
    height: 30vh;
  }
  .small-quote-imgs img {
    width: 4em;
  }
  .quote-imgs {
    width: 30%;
  }
  .catalog-each {
    height: 50vh;
    width: 15em;
  }
  .catalog-list {
    gap: 3em;
  }
  .regist-cont {
    height: 100%;
  }
  .carousel-text h2 {
    font-size: 1.3rem;
  }
  .carousel-text .download-carousel {
    font-size: 1.3rem;
  }
  .display-flex-cont .input-div {
    margin-bottom: 0.5em;
  }
  .regist-input {
    margin-bottom: 0.5em;
  }
  .display-flex-cont .input-div .regist-each-input {
    font-size: 1rem;
  }
  .sign-in-cont .input-div .login-input {
    font-size: 1rem;
  }
  .create-account-btn {
    font-size: 1rem;
  }
  .modal-brand-text h3 {
    margin: 1em;
  }
  .prod-small-imgs {
    height: 17%;
  }
  .prod-small-imgs img {
    width: 4em;
  }
}
@media only screen and (max-width: 800px) {
  .main-heading {
    font-size: 1.6rem;
  }
  .first-heading {
    font-size: 1.3rem;
  }
  .categ-all {
    height: 3.5em;
  }
  .categ-all a {
    font-size: 1.2rem;
  }
  .categ-all a i {
    font-size: 1.2rem;
  }
  .home-cont .carousel {
    height: 40vh;
  }
  .about-us-cont .carousel {
    height: 40vh;
  }
  .products-cont .carousel {
    height: 40vh;
  }
  .catalog-cont .carousel {
    height: 40vh;
  }
  .services-cont .carousel {
    height: 40vh;
  }
  .services-cont .serv-each {
    cursor: pointer;
  }
  .categ-part a {
    height: 25vh;
  }
  .above-text h2 {
    font-size: 1.2rem;
  }
  .above-text i {
    font-size: 1.1rem;
  }
  .section-flex {
    flex-direction: column;
  }
  .sect-input {
    width: 100%;
  }
  footer {
    height: 35vh;
  }
  .ntw-cont {
    height: 30vh;
  }
  .ntw-each {
    height: 100%;
  }
  .ntw-each img {
    height: 60%;
  }
  .latest-text-cont h2 {
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .serv-each h3 {
    font-size: 1.3rem;
    left: 8%;
  }
  .center-text {
    padding: 0.5em 1em;
  }
  .center-text h4 {
    font-size: 0.7rem;
    font-weight: 400;
  }
  .serv-cont {
    height: 100vh;
  }
  .serv-each {
    height: 25vh;
  }
  .serv-each h3 {
    padding: 0.5em 0em;
  }
  .latest-text-cont p {
    height: 110px;
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  .loc-image {
    height: 50vh;
  }
  .abt-us-info-cont {
    padding: 2em 3em;
  }
  .abt-us-info-cont h1 {
    font-size: 1.2rem;
  }
  .styled-text {
    margin: 0 1.7em;
  }
  .sub-w {
    width: 15em;
    height: 5em;
  }
  .sub-w1 {
    width: 12em;
    height: 5em;
  }
  .sub-w2 {
    width: 10em;
    height: 5em;
  }
  .main-ang-brands {
    height: 18vh;
  }
  .sub-ang-brands {
    height: 18vh;
  }
  .left-section h1 {
    font-size: 1.2rem;
  }
  .address-tel-sect h2 {
    font-size: 1rem;
  }
  .email-sect h2 {
    font-size: 1rem;
  }
  .showrooms-double {
    height: 50vh;
  }
  .each-showroom {
    flex-direction: column;
  }
  .left-section {
    width: 100%;
  }
  .filter p {
    padding: 0.5em 1em;
  }
  .filter p i {
    margin-left: 0;
  }
  .latest-cont {
    height: 70vh;
  }
  .prod-each {
    width: 11em;
    height: 30vh;
  }
  .prod-name h3 {
    font-size: 0.65rem;
  }
  .ntw-text h2 {
    margin: 0;
    font-size: 1rem;
  }
  .modal-contentProduct {
    margin: 18% auto;
  }
  .modal-contentLogin {
    margin: 20% auto;
    width: 90%;
  }
  .modal-content {
    margin: 20% auto;
  }
  .prj-main-img {
    height: 50%;
  }
  .modal-brand-img {
    width: 50%;
  }
  .prj-small-imgs {
    height: 15%;
  }
  .prj-small-imgs img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .each-quote {
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
  }
  .small-quote-imgs img {
    width: 4em;
  }
  .main-specs {
    width: 100%;
    margin-top: 1em;
  }
  .quote-imgs {
    width: 100%;
  }
  .catalog-each {
    height: 40vh;
    width: 15em;
  }
  .catalog-list {
    gap: 3em;
  }
  .regist-cont {
    height: 100%;
  }
  .carousel-text h2 {
    font-size: 1.3rem;
  }
  .carousel-text h4 {
    font-size: 1rem;
  }
  .carousel-text .download-carousel {
    font-size: 1rem;
  }
  .display-flex-cont .input-div {
    margin-bottom: 0.5em;
  }
  .regist-input {
    margin-bottom: 0.5em;
  }
  .display-flex-cont .input-div .regist-each-input {
    font-size: 1rem;
  }
  .sign-in-cont .input-div .login-input {
    font-size: 1rem;
  }
  .create-account-btn {
    font-size: 1rem;
  }
  .modal-brand-text h3 {
    margin: 1em;
  }
  .prod-small-imgs {
    height: 17%;
  }
  .prod-small-imgs img {
    width: 4em;
  }
}
@media only screen and (max-width: 500px) {
  .fb-insta-icons {
    margin-left: 1em;
  }
  .serv-cont {
    height: -moz-fit-content;
    height: fit-content;
  }
  .serv-cont .serv-each {
    width: 50%;
  }
  footer {
    height: -moz-fit-content;
    height: fit-content;
  }
  .trms-conds-cont a {
    padding: 2em 0.5em 0.5em 0;
  }
  .trms-conds-cont a p {
    font-size: 0.7rem;
  }
  .categ-part a {
    width: 50%;
  }
  #ham-menu {
    margin-top: 0.5em;
  }
  .ang-logo {
    width: 12em;
  }
  .latest-cont {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
  }
  .latest-main {
    width: 100%;
  }
  .flex-column-sub {
    width: 100%;
  }
  .latest-text-cont h2 {
    font-size: 1rem;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
  .latest-sub .latest-text-cont-sub p {
    height: 140px;
    line-clamp: 8;
    -webkit-line-clamp: 8;
  }
  .ntw-cont {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    flex-direction: column;
  }
  .ntw-each {
    width: 90%;
    height: 50vh;
    margin-top: 1em;
  }
  .ntw-each img {
    height: 70%;
  }
  .nav-margin {
    margin-top: 4em;
  }
  .sub-w {
    width: 10em;
    height: 4em;
  }
  .sub-w1 {
    width: 7em;
    height: 4em;
  }
  .sub-w2 {
    width: 5em;
    height: 4em;
  }
  .many-subs {
    margin: 0;
    margin-top: 0.5em;
  }
  .continue-next-cont .continue-latest .latest-sub {
    width: 100%;
    height: 40vh;
  }
  .first-heading {
    margin: 5em 0em 2em 2em;
  }
  .first-heading span {
    margin-left: 0.5em;
  }
  .head-js .categories {
    margin: 2em 0 2em 1em;
    padding: 0;
  }
  .prod-each {
    width: 78%;
    height: 40vh;
  }
  .modal-contentProduct {
    width: 90%;
    height: 95vh;
    overflow: auto;
  }
  .product-modal-all {
    flex-direction: column;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .product-imgs {
    width: 100%;
    height: 30vh;
  }
  .prod-main-img img {
    width: 85%;
  }
  .prod-small-imgs {
    height: 25%;
  }
  .prod-small-imgs img {
    width: 20%;
  }
  .prod-next-to-img {
    width: 100%;
  }
  .prod-long-desc {
    height: -moz-fit-content;
    height: fit-content;
    overflow: visible;
  }
  .request-btn {
    padding-bottom: 2em;
  }
  .brands-cont h3 {
    margin: 0em 0em 2em 1em;
  }
  .brands-list {
    margin: 0em 0em 2em 2em;
  }
  .modal-contentBrand {
    height: -moz-fit-content;
    height: fit-content;
    margin: 20% auto;
    width: 90%;
    flex-direction: column;
  }
  .modal-brand-img {
    width: 50%;
  }
  .showrooms-double {
    height: 55vh;
  }
  .right-section {
    width: 100%;
    padding-left: 0;
  }
  .sub-btn-quote {
    margin-left: 50%;
  }
  .quotations-cont h3 {
    margin: 1em 0em 1em 2em;
  }
  .quotations-cont ol {
    margin: 1em 0em 3em 2em;
  }
  .contact-us-cont p {
    margin: 1em 1em 3em 2em;
  }
  .section-flex {
    margin-left: 2em;
  }
  .carousel-text {
    top: 20px;
    right: 20px;
  }
  .sign-in-cont .input-div .login-input {
    width: 100%;
  }
  .sign-in label {
    font-size: 1rem;
  }
  .regist-input label {
    font-size: 1rem;
  }
  .modal-contentLogin {
    height: 80vh;
    overflow: auto;
  }
  .display-flex-cont {
    flex-direction: column;
    gap: 1em;
  }
  .hamburger-menu {
    width: 70%;
  }
  .modal-content {
    flex-direction: column;
    height: 85vh;
  }
  .project-imgs {
    width: 100%;
    height: 30vh;
  }
  .prj-main-img {
    height: 25vh;
  }
  .prj-small-imgs {
    height: 23%;
    gap: 0.5em;
  }
  .prj-text {
    width: 100%;
  }
  .latest-sub {
    height: 100%;
  }
  .latest-sub .latest-sub-cont {
    height: 40vh;
  }
}
@media (max-width: 1600px) and (min-width: 1200px) {
  .modal-contentLogin {
    height: 85vh;
    margin: 8% auto;
  }
  .modal-contentLogin .regist-cont {
    height: 60%;
  }
}
@media only screen and (max-width: 500px) {
  .modalService {
    top: 10%;
  }
  .modal-brand-text h3 {
    font-size: 1rem;
  }
  .modal-brand-img {
    padding: 0em;
  }
  .modal-contentService {
    width: 100% !important;
  }
  .carousel-indicators span {
    width: 20px !important;
    height: 3px !important;
  }
  .carousel-controls .prev {
    width: 20px !important;
    height: 20px !important;
  }
  .carousel-controls .next {
    width: 20px !important;
    height: 20px !important;
  }
  .filters {
    margin: 2em 0 0.5em 0.5em !important;
  }
  .filters-pop {
    margin: 2em 0 0.5em 0.5em !important;
    padding: 0;
  }
  .filters-pop li a {
    font-size: 1rem;
  }
  .filter-each {
    width: 100%;
  }
  .first-heading span {
    font-size: 1rem;
  }
  .sub-btn-quote button {
    font-size: 1rem;
  }
  .showrooms-double {
    height: -moz-fit-content;
    height: fit-content;
  }
  .each-showroom {
    height: 60vh;
  }
  .fb-insta-icons i {
    font-size: 1.3rem;
  }
  .addr-each h4 {
    font-size: 0.8rem;
  }
}
.no-results {
  padding: 2em;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.about-us-p-txt {
  font-size: 1.5em;
  text-align: justify;
  text-justify: inter-word;
}

.footer-white-text {
  color: rgb(112, 111, 111) !important;
}

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

.filters {
  background-color: #fff;
  padding: 20px;
  width: 25%;
  min-width: 200px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filters h2 {
  font-size: 20px;
  margin: 0 0 20px 0;
}

.filter-group {
  margin: 0 0 20px 0;
}

.filter-group h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.filter-group label {
  display: block;
  margin: 5px 0;
}

.filter-group input[type=checkbox] {
  margin-right: 5px;
}

.vacancies {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  padding: 20px;
}

.vacancy-card {
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  width: 30%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vacancy-card h2 {
  margin: 0;
  font-size: 18px;
}

.vacancy-card p {
  font-size: 14px;
}

.vacancy-card p:last-child {
  font-size: 12px; /* Description text size */
  margin-top: 10px;
}

.vacancy-card a {
  color: #0074d9;
  text-decoration: none;
  display: block;
}

.vacancy-card a:hover {
  text-decoration: underline;
}

.upload-cv {
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-cv h2 {
  font-size: 24px;
  margin: 0 0 20px 0;
}

.custom-file-upload {
  border: 2px solid #0074d9;
  color: #0074d9;
  background-color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
}

.custom-file-upload:hover {
  background-color: #0074d9;
  color: #fff;
}

.upload-button {
  background-color: #0074d9;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.upload-button:hover {
  background-color: #0056a7;
}

@media screen and (max-width: 768px) {
  .filters {
    width: 100%;
  }
  .filter-group label {
    display: inline-block;
    margin-right: 10px;
  }
  .vacancy-card {
    width: 100%; /* Adjust card width for small screens */
  }
  .vacancy-card h2,
  .vacancy-card p,
  .vacancy-card p:last-child {
    font-size: 14px; /* Adjust text size for small screens */
  }
}
.content-vacancy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vacancy-details-card {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 70%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
}

.vacancy-details-card .submit-button {
  background-color: #0074d9;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.vacancy-details-card .submit-button:hover {
  background-color: #0056a7;
}

.vacancy-details-card h2 {
  margin: 0;
}

.vacancy-details-card h3 {
  text-align: left; /* Align list items to the left */
  margin: 10px 0;
}

.vacancy-details-card ul {
  list-style-type: none; /* Remove bullets */
  padding-left: 0; /* Remove left padding */
}

.vacancy-details-card li {
  margin-top: 5px;
  text-align: left; /* Align list items to the left */
}

.apply-section {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  width: 70%;
  max-width: 800px;
}

.apply-section h2 {
  margin: 0;
}

.apply-section form {
  margin-top: 20px;
}

.apply-section label {
  display: block;
  margin-top: 10px;
}

.apply-section input[type=text],
.apply-section input[type=tel],
.apply-section input[type=email],
.apply-section input[type=file] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
}

.apply-section .submit-button {
  background-color: #0074d9;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.apply-section .submit-button:hover {
  background-color: #0056a7;
}

.back-button {
  display: block;
  text-align: center;
  margin: 20px;
  text-decoration: none;
  color: #0074d9;
}/*# sourceMappingURL=styles.css.map */