* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --primary: #1396CE;
  --primary-2: #1496CE;
  --black: #111111;
  --white: #fff;
  --gray: #999999;
}

body {
  font-family: 'Now';
  position: relative;
}

.aos-main {
  overflow-x: hidden;
}

@font-face {
  font-family: 'Now';
  src: url('../font//Now-Black.otf') format('opentype');
  font-weight: 900;
}

@font-face {
  font-family: 'Now';
  src: url('../font/Now-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Now';
  src: url('../font/Now-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Now';
  src: url('../font/NowAlt-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Now';
  src: url('../font/Now-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Now';
  src: url('../font/Now-Thin.otf') format('opentype');
  font-weight: 200;
}

.top-header {
  background-color: rgba(37, 39, 42, 0.8);
}

.site-info-sub-div a {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  color: var(--white);
}

.site-info-sub-div a:hover {
  text-decoration: underline;
}

.site-info-sub-div {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8.64px;
}

.site-info-div {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 16px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icons a {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header-man-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.top-header-man-div img {
  width: 16px;
  height: 16px;
}

.header-site-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  max-height: 43px;
}

.btn {
  font-weight: 500;
  font-size: 16px;
  padding: 9.5px 16px;
  border-radius: 0px;
  height: 44px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  width: fit-content;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-outline-primary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: var(--white) !important;
}

.btn-primary:hover img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(45%) saturate(6671%) hue-rotate(170deg) brightness(96%) contrast(85%);
}

.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.main-headre {
  position: sticky;
  width: 100%;
  top: -48px;
  z-index: 999;
}

.header .navbar-brand {
  margin: 0;
  padding: 0;
}

.header .navbar {
  padding: 16px 0;
  background: #FFFFFF;
}

.header .navbar-nav .nav-link {
  padding: 8px 19px;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* Hero Section */

.hero-section {
  background: url(../../assets/img/hero-bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-round {
  position: absolute;
  top: -50%;
  right: 0;
  z-index: 0;
  animation: round 4s ease-in-out infinite;
}

@keyframes round {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(10px, -20px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 10px) scale(0.9);
  }

  75% {
    transform: translate(10px, 20px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.hero-section .hero-icon {
  height: 75px;
  margin-bottom: 32px;
}

.hero-section h5 {
  position: relative;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding-left: 60px;
  margin-bottom: 12px;
}

.hero-section h5:after {
  content: '';
  height: 2px;
  width: 50px;
  background: var(--primary);
  position: absolute;
  top: 8px;
  left: 0;
}

.hero-section h1 {
  margin-bottom: 38px;
  font-weight: 900;
  font-size: 49px;
  line-height: 130%;
  text-transform: uppercase;
}

.hero-section h1 span {
  color: var(--primary-2);
}

.hero-section p {
  margin-bottom: 38px;
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.hero-section .row {
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  position: absolute;
  top: 0;
  max-width: 600px;
  height: auto;
  right: 0;
  z-index: 1;
}

.hero-img img{
  width: 100%;
  height: 100%;
}

.hero-words {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid #1396CE80;
}

.hero-words div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-words div p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

/* Counter Section */
.counter {
  padding: 124px 0;
}

.counter h5 {
  margin-bottom: 12px;
  font-weight: 900;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: var(--primary);
}

.counter p {
  margin: 0;
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

/* About Us Section */
.aboutus-section {
  padding: 100px 0 0;
  margin-bottom: 133px;
  position: relative;
}

.aboutus-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50vw;
  background: #EFF2F5;
  z-index: -1;
}

.aboutus-section h5 {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.aboutus-section .about-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aboutus-section .about-title h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
  margin: 0;
  max-width: 472px;
}

.aboutus-section .about-title h2 span {
  color: var(--primary);
}

.about-description {
  padding-left: 100px;
}

.about-description p {
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 42px;
  text-align: justify;
}

.aboutus-section .container {
  position: relative;
}

.aboutus-section .vertical-text {
  color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  rotate: -90deg;
  position: absolute;
  left: -209px;
  bottom: 218px;

}

.aboutus-section .vertical-text span {
  height: 2px;
  width: 50px;
  display: block;
  background: #99999980;
}

.aboutus-section .about-cards {
  margin-left: 100px;
  transform: translateY(66px);
}

.aboutus-section .about-card {
  position: relative;
  overflow: hidden;
}

.aboutus-section .about-card:after {
  content: '';
  background: #1396CE4D;
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.aboutus-section .about-card img {
  width: 100%;
  transition: all .4s ease-in-out;
}

.aboutus-section .about-card div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.aboutus-section .about-card h3 {
  margin-left: 12px;
  color: #FFFFFFB2;
  font-weight: 900;
  font-size: 100px;
  margin-bottom: 0;
}

.aboutus-section .about-card p {
  padding: 19.5px;
  background: #111111CC;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.aboutus-section .about-card:hover h3 {
  color: var(--white);
}

.aboutus-section .about-card:hover p {
  background: var(--black);
}

.aboutus-section .about-card:hover img {
  scale: 1.1;
}

.gallery-section {
  position: relative;
  padding: 33px 0;
  margin-bottom: 67px;
  overflow: hidden;
}

.gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  background: var(--primary);
  z-index: 1;
}

.gallery-section .gallery-header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.gallery-section .gallery-header .title {
  flex-grow: 1;
}

.gallery-section .gallery-header .title h5 {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.gallery-section .gallery-header .title h2 {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: var(--black);
}

.gallery-section .gallery-header .title h2 span {
  color: var(--primary);
}

.gallery-section .gallery-header .line {
  width: 150px;
  background: #99999980;
  display: block;
  height: 1px;
}

.gallery-section .gallery-container {
  padding-left: 100px;
}

.gallery-section .swiper-slide img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.gallery-section .swiper-slide {
  aspect-ratio: 345/356;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f1f1;
}

.gallery-section .swiper-slide:hover {
  box-shadow: 0px 4px 25px 0px #E4E4E4;
}

.gallery-section .swiper-pagination {
  position: unset;
}

.gallery-section .swiper-pagination {
  display: flex;
  width: fit-content !important;
}

.gallery-section .swiper {
  overflow: unset;
}

.gallery-section .swiper-pagination-bullet {
  background: #E7E7E7;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Get In Touch Section */

.getintouch-section {
  background: #EFF2F5;
  padding: 100px 0 42px;
}

.getintouch-section h2 {
  margin-bottom: 72px;
  text-align: center;
  color: var(--black);
  font-weight: 700;
  font-size: 32px;
}

.getintouch-section h2 span {
  color: var(--primary);
}

.form-label {
  color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 5px;
}

.form-control {
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none;
  border-bottom: 1px solid #99999980;
  padding: 0;
  margin-bottom: 48px;
  color: var(--black);
}

.form-control:focus {
  border-color: var(--primary);
}

textarea {
  height: 124px;
  resize: none;
}

footer {
  background-color: var(--black);
  padding: 50px 0 20px;
}

footer h5 {
  margin-bottom: 32px;
  color: var(--white);
  font-weight: 700;
  font-size: 24px;
}

footer .links a {
  display: block;
  margin-bottom: 32px;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  width: fit-content;
}

footer .links a:hover {
  color: var(--primary);
}

footer .contact-info div {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

footer .contact-info div.locaction {
  align-items: start;
  margin-bottom: 42px;
}

footer .contact-info img {
  width: 24px;
}

footer .contact-info p,
footer .contact-info a {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 0;
}

footer .map {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #99999980;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-weight: 300;
  font-size: 14px;
}

.footer-bottom .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Gallery Page */

.title-header {
  position: relative;
}

.title-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #00000099;
}

.title-header img {
  width: 100%;
  height: 247px;
  object-fit: cover;
}

.title-header .title {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  width: fit-content;
  height: fit-content;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.title-header .title h1 {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 700;
  font-size: 32px;
}

.lines {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blue-line {
  width: 40px;
  min-width: 40px;
  height: 5px;
  background-color: var(--white);
}

.white-line {
  width: 100%;
  height: 5px;
  background-color: var(--primary);
}

.gallery-imgs {
  padding: 100px 0;
}

.gallery-imgs img {
  width: 100%;
  height: 368px;
  transition: all .4s ease-in-out;
  object-fit: cover;
}

.gallery-card {
  position: relative;
  overflow: hidden;
}

.gallery-card::after {
  content: '';
  background: #00000040;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
}

.gallery-card h5 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: var(--primary);
  text-transform: uppercase;
  text-align: end;
  margin: 0;
  z-index: 1;
  transition: all .4s ease-in-out;
}

.gallery-card:hover img {
  scale: 1.1;
}

.gallery-card:hover h5 {
  transform: translateY(100%);
}

.gallery-card:hover::after {
  background-color: transparent;
}

/* Product Page */
.product-banner {
  padding: 100px 0;
  background: #EFF2F5;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 72px;
}

.banner-content div {
  max-width: 335px;
  flex-shrink: 0;
}

.banner-content div h5 {
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
}

.banner-content div h2 {
  margin: 0;
  color: var(--black);
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
}

.banner-content div h2 span {
  color: var(--primary);
}

.banner-content img {
  width: 100px;
}

.banner-content p {
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.product-tab {
  padding: 100px 0;
}

.product-tab .nav-pills {
  border: 1px solid #1396CE26;
  gap: 32px;
  margin-bottom: 72px;
}

.product-tab .nav-item {
  width: calc(20% - 25.6px);
}

.product-tab .nav-item .nav-link {
  color: var(--gray);
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.product-tab .nav-item .nav-link.active {
  background: #1396CE26;
  color: var(--primary);
}

.product-tab .nav-item .nav-link:hover {
  color: var(--primary);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #E7E7E7;
  background: #fff;
}

.product-card img {
  width: 100%;
  transition: all .4s ease-in-out;
}

.product-card h5 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  background: var(--primary);
  transition: all .4s ease-in-out;
}

.product-card:hover img {
  scale: 1.1;
}

.product-card:hover h5 {
  transform: translateY(100%);
}

/* Contact Us Page  */
.contact-title {
  margin: 100px 0 72px;
  text-align: center;
  color: var(--black);
  font-weight: 700;
  font-size: 32px;
}

.contact-title span {
  color: var(--primary);
}

.contact-map {
  width: 100%;
  height: 304px;
  margin-bottom: 72px;
}

.contact-detail {
  border: 1px solid #EFF2F5;
  margin-bottom: 100px;
}

.contact-detail .form {
  padding: 56px 32px 32px;
}

.contact-detail .form .btn {
  margin: 84px auto 0;
}

.contact-rightpart {
  background: #EFF2F580;
  padding: 32px 32px 1px;
  height: 100%;
}

.contact-div {
  margin-bottom: 32px;
}

.contact-div h5 {
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 500;
  font-size: 20px;
}

.contact-list {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-list img {
  width: 24px;
  height: 24px;
}

.contact-list a,
.contact-list p {
  color: var(--black);
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  margin: 0;
}

.two-num {
  flex-wrap: wrap;
}

.contact-list a:hover {
  color: var(--primary);
}

.hero-right {
  position: relative;
  padding: 177px 100px 180px 200px;
}

.hero-right::after {
  content: '';
  background-color: #EFF2F5;
  position: absolute;
  top: 0;
  left: 0;
  height: 315px;
  width: 41vw;
  z-index: -1;
}

.hero-right div {
  padding: 48px 48px 0 48px;
  background: var(--primary);
  margin: 0 auto 36px;
  width: fit-content;
}

.hero-right div h5 {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF80;
}

.hero-right div h2 {
  color: var(--white);
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  width: 324px;
  margin: 0;
  margin-bottom: -34px;
}

.hero-right div img {
  width: 360px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  transform: translate(84px, 36px);
}

.about-hero-content {
  padding: 100px;
}

.about-hero-content h2 {
  margin-bottom: 72px;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: var(--black);
  max-width: 520px;
}

.about-hero-content h2 span {
  color: var(--primary);
}

.about-hero-content p {
  margin-bottom: 16px;
  color: var(--gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

.products-list {
  background: #1396CE0D;
  padding: 100px 0;
}

.products-list .container {
  position: relative;
}

.drop-icon {
  position: absolute;
  width: 300px;
  top: -250px;
  left: -50px;
  z-index: -1;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.products-list h2 {
  margin-bottom: 72px;
  color: var(--black);
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
}

.products-list h2 span {
  color: var(--primary);
}

.products-list ul {
  padding-left: 22px;
}

.products-list ul li {
  list-style: none;
  position: relative;
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}

.products-list ul li:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -22px;
  margin: auto;
}

.purewater-section {
  padding: 100px 0;
}

.purewater-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purewater-section .content {
  background-color: var(--black);
  color: var(--white);
  padding: 48px;
  height: 100%;
}

.purewater-section .content h2 {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 32px;
  line-height: 160%;
}

.purewater-section .content h2 span {
  color: var(--primary);
}

.purewater-section .content ul {
  padding-left: 34px;
  margin-bottom: 32px;
}

.purewater-section .content ul li {
  position: relative;
  font-weight: 400;
  color: #FFFFFFCC;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 16px;
}

.purewater-section .content ul li:after {
  content: url(../icon/check.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -34px;
}

.purewater-section .content p {
  font-weight: 400;
  margin: 0;
  font-size: 16px;
  line-height: 160%;
}

#contact_form {
  scroll-margin-top: 120px;
}

.clients-slider img {
  aspect-ratio: 456/330;
  object-fit: cover;
}

.products-section {
  padding: 82px 0;
}

.products-section h3 {
  color: var(--black);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 14px;
}

.products-section h3 span {
  color: var(--primary);
}

.products-section .row {
  margin-bottom: 42px;
}

.products-section .img {
  aspect-ratio: 286/350;
  border: 1px solid #E7E7E7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.products-section .img:hover img {
  scale: 1.05;
}

.products-section .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all .4s ease-in-out;
}

/* === gsap css === */