/* # fonts  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* # variables */
:root {
   

 --color-primary:hsl(121, 100%, 80%);
 --swiper-theme-color: var(--color-primary);
  --color-text-white: hsl(0, 0%, 100%);
  --color-text-light: hsla(0, 0%, 100%, 0.95);
  --color-text-light-2: hsla(0, 0%, 100%, 0.75); 
  --color-text-black: hsl(0, 0%, 0%);
 
  --bg-white:hsl(0, 0%, 100%);
  --color-bg-dark: hsl(300, 13%, 21%);
  --color-bg-dark-2: hsl(60, 2%, 16%);
  --color-bg-black-alpha-60: hsla(0, 0%, 0%, 0.6);

  --color-border: hsl(0, 0%, 100%,0.25);
  --color-border-2: hsla(0, 0%, 100%, 0.1);

  /* scrollbar */
  --color-scrollbar-track: hsl(0, 0%, 21%);
  --color-scrollbar-thumb: hsl(0, 0%, 53%);

  /* font size */
  --fs-body: 16px;
  --fs-lg: 20px;
  --fs-xl: 26px;
  --fs-2xl: 34px;
  --fs-3xl: 46px;
  --fs-4xl: 60px;
  /* padding */
  --section-py: 80px;
}
  
@media(max-width: 991px){
  :root{
  --fs-lg: 19px;
  --fs-xl: 24px;
  --fs-2xl: 30px;
  --fs-3xl: 38px;
  --fs-4xl: 48px;
  }
}
@media(max-width: 767px){
  :root{
  --fs-lg: 18px;
  --fs-xl: 23px;
  --fs-2xl: 28px;
  --fs-3xl: 34px;
  --fs-4xl: 40px;
  }
}

/* # base */
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  color: var(--color-text-light-2);
  background-color: var(--color-bg-dark);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  list-style: none;
}

p + p {
  margin-top: 15px;
}

button {
  cursor: pointer;
  font: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-scrollbar-thumb);
}

input,
textarea,
select {
  width: 100%;
  height: 54px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background-color: transparent;
  font: inherit;
  outline: none;
  color: var(--color-text-light);
}

textarea {
  display: block;
  padding-top: 15px;
  resize: none;
}

::placeholder {
  color: var(--color-text-light-2);
  opacity: 1;
}

/* # page wrapper */
.page-wrapper {
  overflow: hidden;
}

/* # container */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}
@media(max-width: 991px){
  .container{
    padding: 0 15px;
  }
}

/* # section header */
.section-header {
  margin: 0 auto 60px;
  text-align: center;
  max-width: 800px;
}

.section-header .title {
  text-transform: capitalize;
  font-size: var(--fs-3xl);
  line-height: 1.1;
  font-family: var(--ff-2);
}
.section-header p{
  margin-top: 30px;
}

/* # btns */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  border: none;
  background-color: transparent;
}

.btn-1 {
  position: relative;
  color: var(--color-text-black);
  border: 1px solid var(--color-primary);
  transition: color 0.5s;
}

.btn-1:hover {
  color: var(--color-primary);
}

.btn-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  z-index: -1;
  transition: clip-path 0.5s;
  clip-path: inset(0);
}

@media (hover: hover) {
  .btn-1:hover::before {
    clip-path: inset(100% 0 0 0);
  }
}


/* header */

.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-black-alpha-60);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}
.header-bg::before {
  opacity: 1;
}
.header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo{
  font-size: 30px;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
  text-transform: capitalize;
}
.header .menu-btn{
  display: none;
}
.header .menu li{
  display: inline-block;
}
.header .menu li + li{
  margin-left: 40px;
}
.header .menu a{
  font-size: 16px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-weight: 500;
  position: relative;
  transition: color 0.5s;
}
.header .menu a::after{
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transform: scale(0);
  transition: 0.5s;
}
.header .menu a:hover{
  color: var(--color-primary);
}
.header .menu a:hover::after{
  transform: none;
}

@media(max-width: 991px){
  .header{
    padding: 8px 0;
  }
  .header .menu-btn{
    height: 36px;
    width: 44px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .header .menu-btn .line{
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--color-primary);
    transition: transform 0.5s;
  }
  .header .menu-btn .line-1{
    transform: translateY(-8px);
  }
  .header .menu-btn .line-3{
    transform: translateY(8px);
  }
  .header .menu-btn.active .line-2{
    transform: rotate(-45deg);
  }
  .header .menu-btn.active .line-1,
  .header .menu-btn.active .line-3{
    transform: translateY(0) rotate(-135deg);
  }
  .header .menu{
    position: fixed;
    left: 100%;
    top: 0;
    height: 100%;
    background-color: var(--color-bg-dark-2);
    width: 280px;
    padding: 62px 0 30px;
    transition: transform 0.5s;
  } 
  .header .menu.open{
    transform: translateX(-100%);
  }
  .header .menu::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 62px;
    box-sizing: border-box;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  }
  .header .menu > ul{
    max-height: 100%;
    overflow-y: auto;
  }
  .header .menu li{
    display: block;
  }
  .header .menu li + li{
    margin: 0;
  }
  .header .menu a{
    padding: 12px 30px;
  }
  .header .menu a::after{
    content: none;
  }
}
/* hero */
.hero .container {
  position: relative;
}
.hero-slider .swiper-slide{
  height: 750px;
  position: relative;
}
.hero-slider img{
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  filter: opacity(0.3);
}
.hero-slider .swiper-pagination-bullet{
  background-color: var(--bg-white);
}
.hero-slider .caption{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 100%;
    padding: 15px;
    text-align: center;
}
.hero-slider .caption h1{
  color: var(--color-text-white);
  font-size: var(--fs-4xl);
}
@media(max-width:991px){
  .hero-slider .swiper-slide{
    height: 600px;
  }
}
@media(max-width:767px){
  .hero-slider .swiper-slide{
    height: 550px;
  }
}

/* aos */
[data-aos=fade-up] {
  transform: translate3d(0, 45px, 0);
}
.word {
  overflow: hidden;
  vertical-align: bottom;
}
.word .char:first-child {
  text-transform: uppercase;
}
.word .char:not(:first-child) {
  text-transform: lowercase;
}
[data-aos="text-animation"]:not(.splitting){
  opacity: 0;
}
[data-aos="text-animation"] .char {
  transform: translateY(100%);
  transition: 1.5s ease-in-out ;
}
[data-aos="text-animation"].aos-animate .char {
  transform: none;
  transition-delay: calc(0.1s * var(--word-index) );
}



/* about */
.about {
  padding: var(--section-py) 0;
}

.about-content {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
}

.about .section-header {
  text-align: left;
  margin-bottom: 30px;
}


@media(max-width: 991px){
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-left{
    display: none;
  }
}

/* products */
.products {
  padding: var(--section-py) 0;
}
.products-item .img-box {
  overflow: hidden;
  position: relative;
}
.products-item{
  display: flex;  
  gap: 30px;
  flex-wrap: wrap;
}
.products-item:nth-child(even) .content{
  order: -1;
}
.products-item + .products-item{
  margin-top: 80px;
}
.products-item ul{
  list-style: circle;
  padding-left: 30px;
  margin: 20px 0;
}
.products-item .img-box,
.products-item .content{
  flex:1;
}

.products-item img + img{
  margin-top: 30px;
}
.products-item h3{
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--fs-2xl);
  margin-bottom: 15px;
  color: var(--color-primary);
}
.products-item h4{
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--fs-lg);
}
.products-item .ghz{
  text-transform: initial;
}
.products-item table{
  border-collapse: collapse;
  margin-top: 10px;
  width: 100%;
}
.products-item table th{
  font-weight: 600;
}
.products-item table td,
.products-item table th{
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.product-item-single{
  padding: 50px 0;
}
.product-item-single h2{
  text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: var(--fs-2xl);
}

.products-item .fire-columns{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media(max-width:767px){
  .products-item{
    flex-direction: column;
  }
  .products-item .content{
    order: -1;
  }
  .products-item table td,
  .products-item table th{
    font-size: 14px;
  }
}

/* clients  */
.clients {
  padding: var(--section-py) 0;
}

.clients-items {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
}

.clients-item {
  position: relative;
  height: 180px;
  background-color: white;
  border: 1px solid var(--color-border);
}

.clients-item img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media(max-width: 991px){
  .clients-items {
    grid-template-columns: repeat(3, 1fr);
   }
}
@media(max-width: 575px){
  .clients-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
   }
}

/* contact */
.contact {
  padding: var(--section-py) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;  
}

.contact-item i {
  font-size: var(--fs-xl);
  color: var(--color-primary);
  margin-top: 5px;
}
.contact-item span{
  display: inline-block;
}
.contact-item:not(:last-child) {
  margin-bottom: 40px;
}

.contact-item h3 {
  font-size: var(--fs-xl);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}


.contact .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact .form-item:nth-last-child(-n+3) {
  grid-column: 1/-1;
}

.contact .form textarea {
  height: 140px;
}

@media(max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 767px){
  .contact .form{
    grid-template-columns: 1fr;
  }
}

/* footer */
.footer {
  padding: 30px 0;
  border-top: 1px solid var(--color-border-2);
  text-align: center;
}

.footer .copyright{
  text-transform: capitalize;
}
