@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {

  /* Primary Brand Colors */
  --primary-color: #1E4E79;
  --primary-dark: #0E3A63;
  --secondary-color: #000000;
  --accent-color: #F0B400;

  --primary-gradient: linear-gradient(135deg, #F6C76A, #E7A93A, #D18A1F);
  --primary-color2: rgb(255, 126, 3);
  /* mid golden yellow */
  --primary-dark2: #B67618;

  /* Background Colors */
  --body-color: #eef5fd;

  --container-color: #FFFFFF;

  /* Text Colors */
  --title-color: #0B1F33;
  --text-color: hsl(227, 13%, 13%);
  --text-color2: hsl(233, 12%, 15%);
  --footer-color: #2F3E4D;

  /* Utility */
  --white-color: #ffffff;
  --border: 0.1rem solid #d0d7de;
  --top-border: 0.1rem solid #1E4E7933;
  --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  /* font */
  --body-font: "Open Sans", sans-serif;
}


*::selection {
  background: #1E4E79;
  color: #ffffff;
  
}


*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}


*::-webkit-scrollbar-track {
  background: #e0e6eb;
  border-radius: 10px;
}


*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1E4E79, #0E3A63, #06294A);
  border-radius: 10px;
  border: 2px solid #e0e6eb;

}


*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2F6AA1, #1E4E79);
}



.alert-btn,
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  cursor: pointer;
  color: white;
  font-weight: bolder;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 0.5rem;
  font-size: 1.7rem;
  text-transform: capitalize;
}

.btn {
  background: var(--primary-gradient);
  border: 2px solid var(--primary-gradient);
}

.btn:hover {
  background: linear-gradient(135deg, #cb9f48, #c38a27, #cb851c)
}

.alert-btn span {
  font-weight: 600;
}

.alert-btn:hover {
  background-color: rgba(159, 159, 159, 0.423);
  color: black;

}

@keyframes fadeIn {
  0% {
    transform: translateY(1rem);
    opacity: 0.2s;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
  visibility: hidden;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.reveal2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal2.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal3 {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.reveal3.active {
  opacity: 1;
  transform: scale(1);
}

.reveal4 {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.reveal4.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.7s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}


.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.7s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

* {
  font-family: var(--body-font);
  font-weight: 470;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}


.strong {
  color: var(--primary-color2);
  font-size: 500;
}

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

section {
  padding: 3rem 2rem;
}

body {
  background-color: var(--body-color);
  font-family: var(--body-font);
}

header {
  background: var(--primary-gradient);
  box-shadow: var(--box-shadow);
}

header .flex .logo a img {
  width: 250px;
  height: 90px;
  object-fit: contain;
  margin-left: 15px;
  /* margin-top: 10px; */
}

header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .flex .navbar {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

header .flex .navbar span {
  cursor: pointer;
}

header .flex .navbar span i {
  color: var(--white-color);
  font-size: 1.9rem;
}

header .flex .navbar span a {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 650;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  border-bottom: 2px solid transparent;
  transition: border-bottom .2s ease-in-out;
}

header .flex .navbar span a:hover {
  color: #d8d8d8;
  border-color: #d8d8d8c2;
}

header .flex .share {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

header .flex .share span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

header .flex .share .language-switcher select {
  padding: .3rem;
  min-width: 140px;
  margin: 0 0.5rem;
  border: var(--border);
  border-radius: 5px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.home-page #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  box-shadow: none;
}

.home-page #header header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  box-shadow: none;
}

.home-page #header .flex {
  background-color: transparent;
}

main .home-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

main .home-slider .home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  z-index: 0;
}

main .home-slider .home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

main .home-slider .home-content {
  font-family: var(--body-font);
  position: absolute;
  z-index: 99;
  top: 35%;
  left: 10%;
  max-width: 50vw;
  max-height: 70vh;
  margin: auto 0;
  font-size: 1.7rem;
  color: var(--white-color);
  margin: 0 auto;
  /* text-align: justify;  */
}

.hero {
  max-width: 900px;
  margin: 0 auto;
}

.hero .title {
  /* max-width: 60vw; */
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--title-color);
  text-align: center;
  margin: 0 auto;
}

.hero .descp {
  max-width: 60vw;
  font-size: 1.6rem;
  color: var(--text-color);
  margin: 1rem auto;
  text-align: center;
}

.hero .descp p {
  align-items: justify;
}

.heading1 h1 {
  color: var(--title-color);
  text-align: center;
  margin-top: 5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.content {
  max-width: 1200px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  /* flex-wrap: wrap; */
}

.content .box h2 {
  color: var(--title-color);
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

.content .box p {
  color: var(--text-color);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

.quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  height: 45vh;
}

.quotes .icon img {
  width: 100px;
  color: white;
  filter: invert(1) brightness(500%);

}

.quotes h2 {
  max-width: 1200px;
  font-size: 2rem;
  text-align: center;
  color: var(--white-color);
  margin: 1rem auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.brand-section {
  max-width: 1100px;
  margin: 0 auto;

}

.brand-section .flex {
  display: flex;
  flex-wrap: wrap;
}

.brand-section .flex .brand {
  max-width: 320px;
  box-sizing: border-box;
  box-shadow: var(--box-shadow);
  margin: 1rem auto;
}

.brand .image {
  width: 320px;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

.brand .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
  transition: all .3s ease;
}

.brand-section .flex .brand:hover .image img {
  transform: scale(1.035);
}

.brand-section .flex .brand:hover a {
  color: var(--primary-color);
}

.brand-section .flex .brand a:hover {
  color: var(--primary-color2)
}

.brand-section .flex .brand:hover a i {
  padding-left: 1rem;
}

.brand .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand .content h2 {
  color: var(--title-color);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: .5rem;
}

.brand .content p {
  font-size: 1.7rem;
  color: var(--text-color2);
  line-height: 1.5;
  text-align: justify;
  padding: .5rem;
}

.brand .content a {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 600;
  padding: .5rem;
  margin-bottom: 1rem;
}

.brand-section h2 {
  color: var(--title-color);
  font-size: 2.7rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}



.faqs-section {
  max-width: 1100px;
  margin: 0 auto;
}

.faqs-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.faqs-section .faqs {

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqs-section .faqs .box {
  background-color: var(--container-color);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

.faqs-section .faqs .box .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
  font-size: 1.8rem;
  color: var(--text-color);
  cursor: pointer;
}

.faqs-section .faqs .box .question i {
  border-radius: 50%;
  padding: .3rem 0;
  transition: all .3s ease;
}

.faqs-section .faqs .box .question i.active {
  transform: rotate(43deg);
}

.faqs-section .faqs .box .question i:hover {
  background-color: #cccccc;
}

.faqs-section .faqs .box:hover {
  background-color: var(--body-color);
  color: var(--primary-dark);
}

.faqs-section .faqs .box .answer {
  margin: 1rem;
  font-size: 1.7rem;
  color: var(--text-color2);
  overflow: hidden;
  max-height: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.2s linear, max-height 0.2s linear;
}

.faqs-section .faqs .box .answer.active {
  max-height: 300px;
  /* enough height */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}


.share {
  margin-right: 2rem;
}

.search-box {
  width: 250px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  z-index: 999;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.row button {
  background: transparent;
  cursor: pointer;
}

input {
  flex: 1;
  height: 30px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
  color: var(--primary-color);
  vertical-align: middle;
}

input::placeholder {
  color: var(--primary-color);
  font-weight: 500;
  opacity: 0.7;
  font-size: 1.6rem;
}

.result-box ul {
  border-top: 1px solid #999;
  padding: 15px 10px;
  background-color: white;
  border-radius: 3px;

}

.result-box ul li {
  list-style: none;
  border-radius: 3px;
  padding: 7px;
  color: var(--primary-dark);
  text-shadow: none;
  cursor: pointer;

}

.result-box ul li:hover {
  color: var(--primary-color2);
  background-color: #e9f3ff;
}

.result-box.active {
  display: none;
}

.heading {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/about.png) no-repeat center/cover;
  filter: grayscale(20%) blur(1px);
  /* Your effect */
  z-index: -1;
  /* Background layer */
}

.heading.pneumatic::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/penumatic.png) no-repeat center/cover;
}

.heading.hydraulic::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/hydraulic.png) no-repeat center/cover;
}

.heading.teflon::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/teflon.png) no-repeat center/cover;
}

.heading.industrial::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/industrial.png) no-repeat center/cover;
}

.heading.about::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/hydraulic.png) no-repeat center/cover;
}

.heading.fitting::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/products.png) no-repeat center/cover;
}

.heading.gauge::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/pressure_gauge.png
) no-repeat center/cover;
}

.heading.contact::before {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/products/categories/contact2.png
) no-repeat center/cover;
}

.heading h3 {
  font-weight: 600;
  font-size: 4.5rem;
  color: var(--white-color);
  text-transform: uppercase;
}


.heading p {
  font-size: 2rem;
  color: var(--white-color);
}

.heading p a {
  color: var(--primary-color2);
  cursor: pointer;
}

.heading p a:hover {
  text-decoration: underline;
}

.product-category .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.product-category .container .category {
  box-shadow: var(--box-shadow);
  background-color: var(--container-color);
  padding: 1rem;
  border-radius: 5px;
}

.product-category .container .category a {
  display: block;
  width: 300px;
  height: 200px;
}

.product-category .container .category a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 5px;
}

.product-category .container .category:hover img {
  transform: scale(1.05);
}

.product-category .container .category h2 {
  font-size: 1.7rem;
  color: var(--title-color);
  font-weight: 650;
  text-align: center;
  margin-top: 1rem;
}

header {
  position: relative;
}

header .hydro-category {
  position: absolute;
  top: 70%;
  right: 40%;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  border: var(--border);
  padding: 2rem;
  /* text-align: center; */
  width: 20rem;
  display: none;
  animation: fadeIn 0.2s linear;
  padding: 0;
  z-index: 20000;
}

header .hydro-category.active {
  display: inline-block;
}

header .hydro-category a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: .5rem;
  /* font-weight: 500; */
  display: block;
  /* border-top: var(--top-border); */
  background-color: var(--container-color);
  padding: .5rem;
  color: var(--first-color);
}

header .hydro-category a {
  border-left: 4px solid transparent;
  transition: border-bottom 0.3s ease;
}

header .hydro-category a:hover {
  background-color: whitesmoke;
  color: var(--text-color);
  border-left: 4px solid var(--first-color);
}

.heading-seciton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.heading-seciton h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: var(--primary-color2);
  white-space: nowrap;
  text-shadow: -1px 1px 8px rgba(253, 186, 3, 0.6);
}

.heading-seciton .line1 {
  flex: 1;
  /* width: 40px; */
  height: 2.2px;
  background: linear-gradient(to right,
      transparent,
      var(--primary-color2),
      transparent);
  border-radius: 50px;
}

.product-category .hydraulic.pump {
  margin-top: 7rem;
}


.about {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}


.center {
  flex: 1 1 400px;
  max-width: 400px;
}


.content {
  flex: 1.5 1 450px;
  min-width: 320px;
}


.img-card {
  width: 100%;
  height: 400px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.img-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
}

input[type="radio"] {
  display: none;
}

#tab-1:checked~.img-card img:nth-child(1),
#tab-2:checked~.img-card img:nth-child(2),
#tab-3:checked~.img-card img:nth-child(3),
#tab-4:checked~.img-card img:nth-child(4) {
  display: block;
}

/* Second image slider */
#tab2-1:checked~.img-card img:nth-child(1),
#tab2-2:checked~.img-card img:nth-child(2),
#tab2-3:checked~.img-card img:nth-child(3),
#tab2-4:checked~.img-card img:nth-child(4) {
  display: block;
}

.sliders {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
  align-items: center;
}

.sliders label img {
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  object-fit: cover;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.product-table td {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 500;
}

.product-table tr:nth-child(even) {
  background: #f5f5f5;
}

.product-table tr td:nth-child(1) {
  font-weight: 700;
  color: var(--title-color);
}

.product-table td:first-child {
  font-weight: 600;
  width: 40%;
}


@media (max-width: 900px) {

  .about {
    flex-direction: column;
    align-items: center;
  }

  .center,
  .content {
    max-width: 100%;
    width: 100%;
  }

  .img-card {
    height: 300px;
  }
}

.details {
  max-width: 1100px;
  margin: 0 auto;
  text-align: justify;
  margin-bottom: 1.5rem
}

.details p {
  font-size: 1.7rem;
  color: var(--text-color2);
  line-height: 1.3;
  padding: 0 1rem;
}

.details li {
  list-style: none;
  font-size: 1.7rem;
  color: var(--text-color2);
  line-height: 1.5;
  padding: 0 1rem;
}

footer .flex {
  background-color: #121211;
}

footer .flex .section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  column-gap: 50px;
  color: #fff;
  margin: 5rem 6rem;
}

footer .flex .section h3 {
  font-size: 1.8rem;
  font-weight: 550;
  color: var(--primary-color2);
  white-space: nowrap;
  text-shadow: -1px .5px 5px rgba(253, 186, 3, 0.396);
}

footer .flex .section .logo {
  margin-top: 1.5rem;

}

footer .flex .section .logo p {
  font-size: 1.3rem;
  text-align: justify;
}

footer .flex .section .logo img {
  width: 200px;
}

footer .flex .section .logo .btn {
  margin: 1rem auto;
  padding: .5rem;
  font-size: 1.3rem;
  background: transparent;
  border: 2px solid #fff;
  font-weight: 550;
}

footer .flex .section .logo .btn:hover i {
  padding-left: 1rem;
}

footer .flex .section .logo .btn:hover {
  background: #8888;
}

footer .flex .section .links,
footer .flex .section .products,
footer .flex .section .contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.5rem;
  margin-top: 5rem;
}

footer .flex .section .links a,
footer .flex .section .products a,
footer .flex .section .contact p,
footer .flex .section .contact p a {
  color: rgb(204, 204, 204);

}

footer .flex .section .links a span:hover,
footer .flex .section .products a span:hover,
footer .flex .section .contact p:hover {
  text-decoration: underline;

}

footer .flex .section .links a:hover i,
footer .flex .section .products a:hover i,
footer .flex .section .contact p:hover i {
  color: var(--primary-color);
  margin-right: 1rem;
}

.credit .heading-seciton {
  margin-bottom: 0;
  margin-top: 1rem;
}

.credit {
  padding-bottom: 1.5rem;

}

.credit .heading-seciton .line1 {
  height: 2px;
}

.credit .heading-seciton h2 a {
  color: var(--primary-color2);
}

.credit .heading-seciton h2 a:hover {
  text-decoration: underline;
}

.credit .heading-seciton h1 {
  color: rgb(204, 204, 204);
  font-weight: 450;
}

.credit .heading-seciton h1,
.credit .heading-seciton h2 {
  font-size: 1.7rem;
  font-weight: 450;
}

.btn#sendWhatsapp,
.btn#sendWhatsapp2 {
  background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
}

.btn#sendWhatsapp:hover,
.btn#sendWhatsapp2:hover {
  background: linear-gradient(135deg, #5cf28f 0%, #32d16e 40%, #1fc95f 70%, #14b74b 100%);
  transform: translateY(-2px);
}

.heading-seciton a.btn:hover {
  transform: translateY(-2px);
}










#toastBox {
  position: absolute;
  /* bottom: 30px; */
  top: 2%;
  right: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

.toast {
  width: 250px;
  height: 30px;
  background-color: white;
  font-weight: 450;
  font-size: 1.6rem;
  margin: 15px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
  border: none;
  outline: none;
  border-radius: 30px;
  position: relative;
  transform: translateY(-150%);
  animation: slideRoast 3s linear forwards;
}

@keyframes slideRoast {

  0% {
    transform: translateY(-200%);
    opacity: 0;
  }

  40% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(40%);
    opacity: 0;
  }

}

.toast i {
  margin: 0 15px;
  font-size: 1.5rem;
  color: red;
}


.toast::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: 0;
  height: 3px;
  background-color: red;
  border-radius: 50px;
  width: 92%;
  animation: anim 3s linear forwards;

}

@keyframes anim {
  100% {
    width: 0;
  }
}

.toast.error::after {
  background-color: red;
}

.toast.Invalid::after {
  background-color: orange;
}

.share .fa-magnifying-glass.main-search-icon {
  display: none;
}

.menu {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #fff;
  border-radius: 5px;
  padding: 2px;
  display: none;
  cursor: pointer;
}

.menu:hover {
  color: black;
  background-color: var(--body-color);
}

.heading1 {
  font-size: 1.5rem;

  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;


}

.heading1 i {
  font-size: 1.6rem;
  font-weight: 100;
  vertical-align: middle;
}


.heading1 a,
.heading1 span {
  color: var(--title-color);
  font-weight: 550;
}

.heading1 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.268);
}

.about-section .content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-section .content p {
  font-size: 1.8rem;
  color: var(--text-color);
}

.about-section .content {
  background-color: var(--container-color);
  box-shadow: var(--box-shadow);
}

.photo-content .box {
  max-width: 1200px;
  margin: 0 auto;
}

.photo-content .box h2 {
  font-size: 2.5rem;
  /* letter-spacing: 4px;
  word-spacing: 10px; */
  font-weight: 550;
  margin-top: 2rem;
}



.line {
  width: 100px;
  height: 2.5px;
  background-color: var(--primary-color);
  margin-top: 1rem;

}

.line.first {
  width: 70px;
}


.company-details .flex {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.company-details .flex .image {
  flex: 1 1 30rem;
}

.company-details .flex .image img {
  width: 100%;
  border-radius: 30px;
  padding: 2rem;
  margin-left: 0;

}

.company-details .flex .detail {
  flex: 1 1 40rem;
  padding: 2rem;
  background-color: var(--container-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: 20px;
  border-radius: 10px;
  text-align: justify;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.company-details .flex .detail p,
.company-details .flex .detail ul li {
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-color);
  list-style: none;
  text-align: justify;
}

.company-details .flex .detail ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.company-details .flex .detail ul li {
  align-self: flex-start;
  padding-left: 0;
  margin-left: 0;
}

.company-details .flex .detail ul li:hover i {
  color: var(--primary-color);
}

.strong2 {
  font-weight: 650;
}

.detail h3 {
  font-size: 2rem;
  font-weight: 650;
}

.review .container {
  max-width: 1200px;
  margin: 0 auto;
}

.review .box-container .card {
  max-width: none;
  width: 100%;
  min-height: 40rem;
}

.review .box-container .card .profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: var(--top-border);
  gap: 1rem;
  padding: 1.5rem;
}

.review .box-container .card .profile-image img {
  width: 50px;
  border-radius: 50%;
}

.review .box-container .card .profile-image p {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--title-color);
}

.review .box-container .card .profile-image p.add {
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.3rem;
}

.review .title {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--title-color);
  text-transform: uppercase;
  text-align: center;
}

.review .box-container .card .contents p {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.review .box-container .card .contents p span {
  font-size: 1.6rem;
}

.review .box-container .card .contents {
  line-height: 1.5;
  font-size: 1.8rem;
  color: var(--text-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}


.review .review-wrapper {
  max-width: 120rem;
  margin: 0 auto 3.5rem;
  position: static;
}

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

.review .box-container .card {
  position: relative;
}

.review .box-container .card .stars {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  /* margin: 2rem auto; */
  border-radius: 0.5rem;
  border: var(--top-border);
  padding: 0.5rem 1.5rem;
  /* min-width: 15vw; */
}

.review .box-container .card .stars i {
  font-size: 1.7rem;
  color: orange;
  margin: 0.2rem;
}

.detail-contact {
  max-width: 1200px;
  margin: 1rem auto;
  font-size: 2rem;
  text-align: justify;
  line-height: 1.3;
}

.detail-contact h1 {
  max-width: 1000px;
  font-weight: 650;
  font-size: 2.5rem;
  margin: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid black;
}

.detail-contact p {
  margin: 1rem 0;
  color: var(--text-color);
  font-size: 1.8rem;
}

.detail-contact iframe {
  border-radius: 10px;
}

.formbold-main-wrapper .formbold-form-wrapper h2 {
  text-align: center;
  font-weight: 650;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.formbold-main-wrapper .formbold-form-wrapper p {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 5rem;
  color: var(--text-color);
}

.formbold-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 48px; */
}

.formbold-form-wrapper {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  background: var(--body-color);

}

.formbold-input-flex {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.formbold-input-flex>div {
  width: 50%;
}

.formbold-input-radio-wrapper {
  margin-bottom: 28px;
}

.formbold-radio-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.formbold-radio-label {
  font-size: 14px;
  line-height: 24px;
  color: #07074D;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.formbold-input-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.formbold-radio-checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #FFFFFF;
  border: 1px solid #DDE3EC;
  border-radius: 50%;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark {
  background-color: #6A64F1;
}

.formbold-radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.formbold-radio-label .formbold-input-radio:checked~.formbold-radio-checkmark:after {
  display: block;
}

.formbold-radio-label .formbold-radio-checkmark:after {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
}

.formbold-form-input {
  width: 100%;
  padding: 13px 22px;
  border-radius: 5px;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  color: #07074D;
  outline: none;
  resize: none;
}

.formbold-form-input::placeholder {
  color: #536387;
}

.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-form-label {
  color: #07074D;
  font-size: 18px;
  line-height: 24px;
  display: block;
  margin-bottom: 10px;
}

.send-btn {
  text-align: center;
  width: 100%;
  font-size: 16px;
  border-radius: 5px;
  padding: 14px 25px;
  border: none;
  font-weight: 500;
  background-color: #6A64F1;
  color: white;
  cursor: pointer;
  margin-top: 25px;
}

.send-btn#send {
  background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
}

.send-btn:hover,
.send-btn#send:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  background: black;
  color: #a9a5fd;
  font-weight: bold;
}

.formbold-input-radio-wrapper select#sector:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-input-radio-wrapper select#sector {
  width: 100%;
  padding: 1px 20px;
  border-radius: 5px;
  border: 1px solid #DDE3EC;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  color: #07074D;
  outline: none;
  resize: none;
}

.formbold-input-radio-wrapper select#sector option:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-input-radio-wrapper select#sector option {
  color: #2b3449;
}

.checkbox {
  font-size: 1.3rem;
  color: var(--text-color);

}

.checkbox span {
  margin: 0 5px;

}

.checkbox span label {
  cursor: pointer;
}

.checkbox span input {
  cursor: pointer;
}


.contact-sec {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/images/contact-sec.jpg) no-repeat center/cover;
  min-height: 50vh;
}

.contact-sec .content-sec {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-sec .content-sec h3 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white-color);
  padding: 2rem;
  text-transform: uppercase;
}

.contact-sec .content-sec p {
  font-size: 2rem;
  color: var(--white-color);
  padding: 0 2rem;
  text-align: justify;
  max-width: 50vw;
  margin: 10px 0;
}

.contact-sec .content-sec a {
  margin-left: 15rem;
  margin-bottom: 2rem;
}

.Uparrow {
  font-size: 2.5rem;
  color: var(--white-color);
  position: fixed;
  bottom: 20px;
  z-index: 999;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;

}

.Uparrow.active {
  opacity: 1;
  visibility: visible;
}

.Uparrow i {
  background: var(--primary-gradient);
  padding: 2px;
  border-radius: 5px;
  pointer-events: none;
  color: var(--primary-color);
}

.Uparrow:hover i {
  transform: translateY(-2px);
  color: var(--white-color);
  background: var(--primary-dark2);
}

.counter-sec {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;

}

.counter-sec .counter {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.counter-sec .counter img {
  width: 50px;

  margin: 0 auto;
}

.counter-sec .counter h2 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.counter-sec .counter h2::after {
  content: "+";
}

.counter-sec .counter h2.rate::after {
  content: "%";
}

.counter-sec .counter p {
  font-size: 1.6rem;
}



























@media (max-width: 992px) {
  .search-box {
    width: 250px;
    height: 32px;
  }

  .search-box input {
    font-size: 1.4rem;
  }

  header .flex .logo a img {
    width: 200px;
    height: 90px;
    object-fit: contain;
    margin-left: 15px;
    /* margin-top: 10px; */
  }

  footer .flex .section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 3rem 2rem;
  }

}

@media (max-width: 950px) {

  .menu {
    display: inline-block;
  }

  header .flex {
    position: relative;
  }



  header .flex .navbar {
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: #1e4f7973;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    width: 100%;

  }

  header .flex .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
    pointer-events: auto;
  }

  header .flex .navbar span {
    align-self: baseline;
    margin-left: 1.5rem;
    font-size: 1.8rem;
  }

  header .flex .navbar {
    gap: 8px;
    margin-top: 1rem;

  }

  @media (max-width: 800px) {

    .credit .heading-seciton h1,
    .credit .heading-seciton h2 {
      font-size: 1.5rem;
      font-weight: 400;
    }
  }

  @media (max-width: 768px) {
    header .flex .logo a img {
      width: 170px;
      height: 80px;
      max-height: 25vh;
    }

    .search-box {
      width: 200px;
      height: 32px;
    }

    main .home-slider .home-content {
      top: 35%;
      left: 10%;
      max-width: 70vw;
      max-height: 70vh;
      margin: auto 0;
      font-size: 1.5rem;
    }

    .alert-btn,
    .btn {
      display: inline-block;
      margin-top: 1rem;
      padding: 1rem 1rem;
      font-size: 1.5rem;
    }

    .hero .title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .quotes .icon img {
      width: 70px;

    }

    .quotes h2 {
      font-size: 1.8rem;
    }

    .faqs-section h2 {
      font-size: 1.8rem;
    }

    .faqs-section .faqs .box .question {
      font-size: 1.6rem;
    }

    .faqs-section .faqs .box .answer {
      font-size: 1.5rem;
    }

    footer .flex .section .links a,
    footer .flex .section .products a,
    footer .flex .section .contact p,
    footer .flex .section .contact p a {
      font-weight: 400;
      font-size: 1.6rem;
    }

    footer .flex .section h3 {
      font-size: 1.8rem;
      font-weight: 500;
    }

    .heading1 h1 {
      font-size: 2.5rem;
    }

    .content .box h2 {
      font-size: 1.6rem;
    }

    header .flex .navbar span a {
      font-size: 1.8rem;
      font-weight: 600;
    }

    .heading h3 {
      font-weight: 600;
      font-size: 3.5rem;
    }

    .heading p {
      font-size: 1.8rem;
    }

    .detail-contact h1 {
      font-size: 2rem;
    }

    .formbold-form-label {
      color: #07074D;
      font-size: 16px;
    }

    footer .flex .section .logo img {
      width: 170px;
    }

    .detail-contact h2 {
      font-size: 2rem;
      font-weight: 600;
    }

    .brand .content p {
      font-size: 1.6rem;
    }

  }

  @media (max-width: 668px) {

    .credit .heading-seciton.foot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      font-size: 1.3rem;
    }

    .content {
      display: block;

    }

    .content .box p {
      margin-bottom: 1.5rem;
    }

    .contact-sec .content-sec h3 {
      font-size: 2rem;
      font-weight: 600;
      color: var(--white-color);
      padding: 1rem;
      text-transform: uppercase;
      text-align: center;
      min-width: 10vw;
    }

    .contact-sec .content-sec p {
      font-size: 1.5rem;
      color: var(--white-color);
      padding: 0 1rem;
      text-align: center;
      max-width: 100vw;
      margin: 10px 0;
    }

    .contact-sec {
      min-height: 30vh;
    }

    .contact-sec .content-sec a {
      margin-left: 35%;
      margin-bottom: 2rem;
    }

  }


  @media (max-width: 600px) {

    header .hydro-category {
      position: absolute;
      top: 90%;
      right: 10%;
    }

    .counter-sec .counter h2 {
      font-size: 3rem;
      font-weight: 650;
      text-align: center;
    }

    .counter-sec .counter p {
      font-size: 1.5rem;
    }


    .search-box {
      display: none;
      width: 100%;
      margin-left: -10px;
    }

    .search-box.active {
      display: block;
    }

    .row input {
      width: 100%;
    }

    .share .fa-magnifying-glass.main-search-icon,
    .share .fa-circle-xmark.main-search-icon {
      display: inline-block;
      font-size: 18px;
      cursor: pointer;
      margin-right: 10px;
      background-color: var(--container-color);
      border-radius: 5px;
      padding: .5rem .2rem;
      cursor: pointer;
      color: var(--primary-color);
    }

    .share .fa-circle-xmark.main-search-icon {
      color: var(--primary-color2);
      padding: .3rem .2rem;
    }

    .share .fa-circle-xmark.main-search-icon:hover {
      color: red;
    }

    header .flex .logo a img {
      width: 170px;
      height: 60px;
      object-fit: contain;
      margin-left: 15px;
      /* margin-top: 10px; */
    }

    .search-box {
      width: 200px;
      height: 32px;
    }

    .share .fa-magnifying-glass.main-search-icon:hover {
      color: black;
      background-color: var(--body-color);
    }

    footer .flex .section {
      display: grid;
      grid-template-columns: 1fr;
      margin: 3rem 2rem;
    }

  }
}

.formbold-input-radio-wrapper label::after {
  content: "";
}

.chat {
  position: fixed;
  bottom: 20px;
  right: 1%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  z-index: 999;
}

@media(max-width: 450px) {


  #toastBox {
    position: absolute;
    /* bottom: 30px; */
    top: 2%;
    right: 10%;
    z-index: 999;
  }

  footer .flex .section {
    display: grid;
    grid-template-columns: 1fr;
    margin: 3rem 2rem;
  }

  .search-box {
    width: 115px;
    height: 32px;
  }

  header .flex .logo a img {
    width: 135px;
    height: 60px;
  }

  .heading {
    position: relative;
    min-height: 20vh;
  }

  .hero .title h1 {
    font-size: 2rem;
    font-weight: 600;
  }

  .hero .descp {
    max-width: 80vw;
  }

  .brand .content {
    gap: 2px;
  }

  .brand .content h2 {
    margin-bottom: 0;
  }


  .heading1 h1 {
    font-size: 2.3rem;
  }

  .content .box h2 {
    font-size: 1.6rem;
  }

  .quotes h2 {
    font-size: 1.6rem;
  }

  .heading h3 {
    font-size: 3rem;
  }

  .heading p {
    font-size: 1.5rem;
  }

  .about-section .content p {
    font-size: 1.5rem;
  }

  .photo-content .box h2 {
    font-size: 2rem;
    text-align: center;
  }

  .line.first {
    width: 70px;
    margin: 0 auto;
  }

  .line {
    width: 70px;
    margin: 0 auto;
  }

  .company-details .flex .image img {
    width: 100%;
    border-radius: 5px;
    padding: 0;
    margin-top: 10px;
  }

  .company-details .flex .detail p {
    font-size: 1.5rem;

  }

  .company-details .flex .detail ul li {
    font-size: 1.4rem;
  }

  .company-details .flex .detail ul li {
    text-align: left;
  }

  .review .box-container .card .contents {
    font-size: 1.6rem;
  }

  .review .box-container .card .stars {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0.5rem;
    border: var(--top-border);
    padding: 0.2rem;
    min-width: 15vw;
  }

  .detail-contact h1 {
    font-size: 1.6rem;
  }

  .detail-contact p {
    font-size: 1.5rem;
  }

  .detail-contact p:nth-child(3) {
    margin-bottom: 2rem;
  }

  .formbold-main-wrapper {
    padding: 15px;
  }

  .formbold-input-radio-wrapper label {
    font-size: 0;
    /* hides original text */
  }

  .formbold-input-radio-wrapper label::after {
    content: "Select Your Industry";
    font-size: 16px;

  }

  input::placeholder {
    font-size: 1.4rem;
  }

  .formbold-input-radio-wrapper select#sector {
    font-size: 14px;
  }

  .heading-seciton h2 {
    font-size: 1.8rem;
  }

  .details p {
    font-size: 1.5rem;
  }

  .details li {
    list-style: none;
    font-size: 1.5rem;
  }

  .brand .content p {
    font-size: 1.5rem;
  }
    .chat {
    position: fixed;
    bottom: 20px;
    right: 5%;
  }
  
}


.chat a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: var(--primary-gradient);
  color: var(--white-color);
  border-radius: 50%;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border: 0.2px solid #1e4f7985;
  box-shadow: var(--box-shadow);
  margin-bottom: 5px;
}

.chaticon {
  display: none;
}


.chaticon.active {
  display: inline-block;
  opacity: 1;
}

.chat a i:nth-child(1) {
  background: linear-gradient(135deg, #25D366 0%, #20c659 40%, #1ebe57 60%, #0fb044 100%);
  box-shadow: 0px 5px 10px #0fb044;
  border: 0.2px solid #0a7b2fa1;
}

.chat a i:nth-child(1):hover {
  background: linear-gradient(135deg, #5cf28f 0%, #32d16e 40%, #1fc95f 70%, #14b74b 100%);
  transform: translateY(-2px);
}

.chat a i.fa-phone {
  background: var(--primary-color);
  box-shadow: 0px 5px 10px var(--primary-color);
}

.chat .image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.chat .image span {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 1rem;
  color: var(--title-color);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
  background-color: var(--container-color);
  border: var(--border);
  display: none;
}

.chat .image span.active {
  display: inline-block;
}

.message-btn.active {
  display: none;
}


.chat .image .message-btn.fa-xmark:hover {
  background: var(--primary-dark2);
}

.chat .image .message-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 10px;
  background: var(--primary-color);
  color: var(--primary-color2);
  border-radius: 50%;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  border: var(--border);
  box-shadow: var(--box-shadow);
}

.chat .image .message-btn.fa-xmark {
  background: var(--primary-color2);
  color: red;
}


.chat .image .message-btn:hover {
  background: var(--primary-color2);
  color: black;
  transform: translateY(-2px);
}