/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(0, 66%, 62%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 54%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #f1f5f9;
  --container-color: #fff;

  --first-color-black: hsl(0, 66%, 62%);
   --second-color-black: hsl(25, 83%, 54%);
  --title-color-black: hsl(228, 8%, 95%);
  --text-color-black: hsl(228, 8%, 70%);
  --border-color-black: hsl(228, 16%, 14%);
  --body-color-black: hsl(228,12%,8%);
  --container-color-black: hsl(228,16%,12%);  

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}


.container {
  max-width: 1200px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.grid-2{
  grid-template-columns: repeat(2,1fr);
  column-gap: 1rem;
}

.section {
  padding: 4.5rem 0 2rem;
  background-color: var(--body-color);
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 2rem;
}

.section__title span {
  color: var(--first-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.section__subtitle::after{
  content: "";
  width: 200px;
  height: 1px;
  background-color: var(--second-color);
}

.main {
  overflow: hidden; /* For the animations ScrollReveal*/
}

#loader{
  height: 100vh;
  width: 100%;
  position: fixed;
  background-color: var(--body-color);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader img{
  width: 80px;
  animation: breathe 3s infinite;
}

@keyframes breathe {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.4);
  }
  100%{
    transform: scale(1);
  }
}

.topbar{
  display: none;
  padding: 0 1rem;
  background: linear-gradient(101deg, hsl(355, 66%, 53%),hsl(355,66%,47%));
  color: #fff;
}

.topbar i{
  color: #fff;
}

.topbar .container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin: 0 auto;
}

.topbar .container .tb-item{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
}

.topbar__item{
  display: flex;
  flex-direction: row;
  column-gap: 0.25rem;
  align-items: center;
}

.header{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  z-index: var(--z-fixed);
  transition: .4s;
 
}

.nav{
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
}

.nav__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-medium);
  transition: .3s;
  flex-direction: column;
}






.logo__sub{
  color: var(--first-color);
  letter-spacing: .7rem;
  position: absolute;
  top: 2.25rem;
  left: 2rem;
  font-size: var(--small-font-size);
}

.logo__img{
  /* padding-top:1rem;  */
  width: 150px;
}

.filter-control{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.75rem;
  
  margin: 0 auto;
}



.filter-btn {
  border: 2px solid var(--text-color-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background-color: transparent;
  color: var(--first-color);
  cursor: pointer;
  font-size: var(--small-font-size);
}

.filter-btn.active-filter{
  background-color: var(--first-color);
  color: #fff;
}

.nav__toggler{
  color: hsl(355, 66%, 53%);
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle,
.nav__close{
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close{
  opacity: 0;
}

.nav__link{
  color: var(--text-color-black);
  /* background-color: var(--body-color-black); */
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

.show-menu{
  opacity: 1 !important;
  top: 3.5rem !important;
  pointer-events: initial !important;
}

.show-icon .nav__toggle{
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close{
  opacity: 1;
  transform: rotate(90deg);
}

.product__toggle{
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;

}

.product__disp{
  width: 600px; 
}

.product__disp img{
  width: 100%;
  object-fit: cover;
}

.nav__subitem a,
.sub-dropdown li a{
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  color: var(--text-color-black);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.nav__subitem a:hover,
.sub-dropdown li a:hover{
  color: var(--first-color);
}

.dropdown,
.sub-dropdown{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown,
.dropdown li:hover > .sub-dropdown{
  max-height: 1400px;
  transition: max-height .4s ease-in;
}

.dropdown__item:hover .nav__link .product__toggle{
  transform: rotate(180deg);
}

.nav__subitem i{
  margin-left: auto;
}

/* .dropdown__item {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

@media screen and (max-width:1023px){
  
  .dropdown{
    bottom: 5rem;
    left: 50%;
  }

  .menu-btn{
    display: inline-block !important;
  }

  .nav__menu{
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar{
    width: 0;
  }

  .nav__list{
    background-color: var(--body-color-black);
    padding-top: 1rem;
  }

  /* .nav__menu{
    position: fixed;
    bottom: 2rem;
    left:0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    background-color: var(--container-color);
    padding: 1.30rem 3rem;
    box-shadow: 0 8px 24px hsla(228,66%,45%,.15);
    border-radius: 1.25rem;
    transition: .4s;
  }

  .nav__list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav__link{
    color: var(--text-color);
    display: flex;
    padding: .5rem;
    border-radius: 50%;
  }

  .nav__link i{
    font-size: 1.25rem;
  }

  .nav__link span{
    display: none !important;
  } */
}



.nav__link span{
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.25rem;
}

.header-cover{
  background: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('../img/products-bg.jpg');
  height: 50vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.home{
  /* background: linear-gradient(170deg, hsl(0,0%,22%) 0%, hsl(0,0%,6%)30%); */
  /* background-image: url('../img/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  /* background: linear-gradient(170deg, hsl(0,0%,22%) 0%, hsl(0,0%,6%)30%); */
  padding-bottom:0 ;
}

.counter{
  color: var(--title-color) !important;
}

.hero__slider{
  max-height: 100vh;
  width: 100%;
  /* padding-top: 3rem; */
}

.slider-button-next,.slider-button-prev{
  z-index: 2;
  font-size: 2rem;
  color: var(--first-color);
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.slider-button-prev{
  left: 10px;
}

.slider-button-next{
  right: 10px;
}

.main-section{
  margin-top: -5rem;

}

.hero__container{
  /* padding-top: 2rem; */
  row-gap: 3.5rem;
}

.hero__title,
.hero__value-number{
  color: var(--title-color);
  text-align: center;
}

.hero__title{
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}

.hero__title span{
  color: var(--first-color);
}

.hero__desc{
  text-align: center;
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.search__form{
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .75rem;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  border: 3px solid var(--text-color-light);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.search__form i{
  font-size: 1.25rem;
  color: var(--first-color);
}

.hero__search-input{
  width: 90%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 .5rem;
}

.hero__search-input::placeholder{
  color: var(--text-color-light);
}

.hero__value{
  display: flex;
  column-gap: 2.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero__value-number{
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.hero__value-number span{
  color: var(--first-color);
}

.hero__value-desc{
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}

.fill{
  min-height: 40vh;

  padding: 4rem;
  background: linear-gradient(170deg, hsl(0,0%,22%) 0%, hsl(0,0%,6%)60%); 
}

.hero__images{
    position: relative;
  /* display: flex;
  justify-content: center; */
}

.cross-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

.cross-content h1{
  text-transform: uppercase;
  font-size: 60px;
  /* font-weight: lighter; */
  color: #dbdbdb;
}

.cross-content h1 span{
  color: var(--first-color);
}

.cross-img{
  position: absolute;
  width: 100px;
  height: 400px;
  overflow: hidden;
  filter: saturate(0);
  box-shadow: 0 16px 32px hsla(345,66%,25%,.25);

}

.cross-img img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 400px;
  object-fit: cover;

}

.cross-img-1{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-30deg);
}

.cross-img-2{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(30deg);
}

.hero__circle{
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg, hsl(0,0%,16%)50%, hsl(0,0%,25%) 100%);
  border-radius: 135px 135px 0 0;
}

.hero__img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsla(345,66%,25%,.25);
}

.btn{
  display: inline-block;
  background: linear-gradient(101deg, hsl(355, 66%, 53%),hsl(355,66%,47%));
  color:#fff;
  padding: 14px 28px;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(345, 66%, 45%, 0.25);
  transition: .3s;
  cursor: pointer;
}

.btn:hover{
  box-shadow: 0 4px 12px hsla(345, 66%, 45%, 0.25);

}

.reveal-header{
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(345, 4%, 15%, 0.1);
  position: fixed !important;
}

.logo__container{
  padding-top: 2rem;
  grid-template-columns: repeat(2,1fr);
  gap: 3rem 2rem;
  justify-items: center;
}

.logo-img img{
  height: 80px;
  opacity: .7;
  transition: .3s;
}

.logo-img img:hover{
  opacity: .6;
}

.text-center{
  text-align: center !important;
}

.product__container{
  padding: 1rem 0 5rem;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.product__card{
  width: 80%;
  background-color: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
}

.product__img{
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.product__title{
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.product__desc{
  font-size: var(--small-font-size);
  margin-bottom: 1rem;
}

.product__card:hover{
  box-shadow: 0 12px 16px hsla(345, 66%, 45%, 0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  content: '';
}

.swiper-button-next,
.swiper-button-prev{
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: .5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  
}

.swiper-button-next{
  right: calc(50% - 3rem);
}

.swiper-button-prev{
  left: calc(50% - 3rem);
}



.explore-btn{
  color: var(--first-color);
}

.filler{
  background: url("../img/filler.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 150px;
  position: relative;
}

.section_bg{
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: .7;
  top: 0;
  right: 0;
  z-index: 2;
}

.fill{
  margin-top: 8rem;
  min-height: 40vh;
}

.filler__container{
  margin-top: 16rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.catchy__title{
  color: #fff;
  z-index: 3;
  margin-bottom: 1rem;
}

.filler__desc{
  z-index: 3;

}

.filler__btn{
  color: var(--first-color);
  z-index: 3;
  margin-bottom: 1rem;
}


.value__container{
  row-gap: 3rem;

}

.value__images{
  position: relative;
  display: flex;
  justify-content: center;
}

.value__circle{
  width: 266px;
  height: 316px;
  background-color: hsl(228,24%,97%);
  border-radius: 135px 135px 16px 16px;
}

.value__img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  inset:0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228,66%,25%,.25);
}

.value__desc{
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value__accordion{
  display: grid;
  row-gap: 1.5rem;
}

.value__accordion-item{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}

.value__accordion-header{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value__accordion-icon{
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: .25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: .75rem;
  transition: .3s;
}

.value__accordion-title{
  font-size: var(--small-font-size);
}

.value__accordion-arrow{
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: .25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: .3s;
}

.value__accordion-arrow i{
  transition: .4s;
}

.value__accordion-desc{
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content{
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}

.accordion-open{
  box-shadow: 0 12px 32px hsla(345, 66%, 45%, 0.1);
}

.accordion-open .value__accordion-icon{
  box-shadow: 0 4px 4px hsla(345, 66%, 45%, 0.1);;
}

.accordion-open .value__accordion-arrow i{
  transform: rotate(-180deg);
}


.contact__container{
  row-gap: 2rem;
}

.contact__images{
  position: relative;
  display: flex;
  justify-content: center;
}

.contact__circle{
  width: 266px;
  height: 316px;
  background-color: hsl(228,24%,97%);
  border-radius: 16px 16px 135px 135px;
}

.contact__img{
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px 12px 125px 125px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(345,66%,25%,.25);
}

.contact__desc{
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}

.contact__card{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
}

.contact__box{
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem .75rem;
  border-radius: .5rem;
  transition: .3s;
}

.contact__info{
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.contact__card i{
  padding: 6px;
  background-color: var(--first-color-lighten);
  border-radius: 6px;
  font-size: 1.25rem;
  color: var(--first-color);
}

.contact__card-title{
  font-size: var(--normal-font-size);
}

.contact__card-desc{
  font-size: var(--smaller-font-size);
}

.contact-btn{
  font-size: var(--small-font-size);
  padding: 14px 0;
  width: 100%;
  border-radius: .25rem;
  background: var(--first-color-lighten);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  box-shadow: none;
  text-align: center;
}

.contact-btn:hover{
  background-color: var(--first-color);
  color: #fff;
}

.contact__box:hover{
  box-shadow: 0 8px 24px hsla(345, 66%, 45%, 0.1);
}

.subscribe{
  padding: 2.5rem 0;
}

.subscribe__container{
  background-color: var(--first-color);
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 6px solid var(--first-color-light);
  text-align: center;
}

.subscribe__title{
  font-size: var(--h2-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.subscribe__desc{
  color: hsl(228, 90%, 92%);
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.sub-btn{
  border: 2px solid #fff;
  background: var(--first-color-light);
}

.sub-btn:hover{
  background-color: var(--first-color);
}

.eol{
  width: 80%;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--first-color);
  margin: 1rem auto;
  padding: 0;
}

.footer{
  border-top: 10px solid var(--first-color-black);
  background-color: var(--container-color-black);

}

.footer__container{
  row-gap: 2.5rem;
}

.footer__logo{
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer__logo i{
  font-size: 1.25rem;
}

.footer__img{
  width: 150px;
  /* margin: 0 auto; */
}

.footer__desc, .footer_link{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

.footer__content, .footer__links{
  display: grid;
}

.footer__content{
  grid-template-columns: 1fr;
  /* grid-template-columns: repeat(2,max-content); */
  gap: 2.5rem 4rem;

}


.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: #fff;
}

.footer__links{
  row-gap: .5rem;
}

.footer_link{
  color: var(--text-color);
  transition: .3s;
}

.footer_link:hover{
  color: var(--first-color);
}

.footer__social{
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
}

.footer_social_link{
  font-size: 1.25rem;
  color: var(--text-color);
  transition: .3s;
}

.footer_social_link:hover{
  color: var(--first-color);
}

.footer__info{
  margin-top: 5.5rem;
  text-align: center;
}

.footer__copy{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.active-link{
  background: linear-gradient(101deg, hsl(355, 66%, 53%),hsl(355,66%,47%));
  color: #fff;
  box-shadow: 0 4px 8px hsla(345, 66%, 45%, 0.25);
}

::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228,8%,76%);
}

::-webkit-scrollbar-thumb{
  border-radius: .5rem;
  background-color: hsl(228,8%,64%);
}

::-webkit-scrollbar-thumb:hover{
  border-radius: .5rem;
  background-color: hsl(228,8%,54%);
}

.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228,66%,45%,.1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
  color: var(--first-color);
}

.show-scroll{
  bottom: 8rem;
}

iframe{
  border-radius: 1rem;
  width: 60%;
}

.cat-btn{
  padding: 9px 18px;
  font-size: var(--smaller-font-size);
  display: none;
}


.pro-data{
  text-align: center;
 
  margin-top: 16px;

}

.pro-img{
  width: 100%;  
    height: 350px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

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

.social-img{
  width: 20px;
  margin-top: 5px;
}

.product__page #product-details{
  display: grid;
  grid-template-columns: repeat(1fr);
  align-items: center;
  justify-content: center;
  row-gap: 2rem;
}

.product__page .product__data{
  display: grid;
  row-gap: 2rem !important;
}

.product__page .product__data #product-name{
  font-size: 2rem;
  letter-spacing: 3px;
}

.product__page .product__data #product-desc{
  font-size: 1.25rem;
  
}

.product__page .container{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem ;
}

.product__page .catalogue__details{
  order: 1;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.product__page .catalogue__details h3{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product__page .catalogue__details #related{
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}

.product__page .catalogue__details #related a{
  font-size: 1rem;
  color: var(--text-color);
}



.product__page .related-item{
  display: flex;
  flex-direction: row;
  align-items: center;

}

/* .social-img:hover{
  filter: saturate(1);
  opacity: 1;
} */

/* .pro-img img{

  object-fit: cover;
} */

@media screen and (max-width: 350px){
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section{
    padding: 3.5rem 0 1rem;
  }

  .home{
    padding-bottom: 0;
  }

  .contact__card{
    grid-template-columns: repeat(1,180px);
    justify-content: center;
  }
  .product__page .catalogue__details{
    order: 1;
  }
}

@media screen and (max-width: 320px){
  .grid-2{
    grid-template-columns: 1fr;
    
  }

  .nav__link{
    padding-inline: 1rem;
  }



  .hero__value{
    column-gap: 1rem;
  }

  .logo__container{
    gap: 2rem 1rem;
  }

  .product__card{
    width: 230px;
    padding: .5rem .5rem .75rem;
  }

  .value__img, .contact__img{
    width: 220px;
    height: 260px;
  }

  .value__circle, .contact__circle{
    width: 236px;
    height: 280px;
  }

  .footer__content{
    gap: 2.5rem;
  }

  .listProduct{
    grid-template-columns: 1fr !important;
    
  }

  .pro-img{
 
      height: 200px; 

  }
}


@media screen and (min-width: 576px){
  
  .social-img{
    width: 30px;

  }

  .footer__social{

    column-gap: 0.5rem;

  }

  .search__form{
    width: 412px;
  }

  .contact__card{
    grid-template-columns: repeat(2,192px);
    justify-content: center;
  }

  .footer__content{
    grid-template-columns: repeat(3,max-content) ;
  }

  /* .cat-btn{
    
    font-size: var(--small-font-size) !important;
  } */
  
  .listProduct{
    
    grid-template-columns:repeat(2,1fr) !important;
    
  }

  .pro-img{
      height: 200px; 
  }
}


@media screen and (min-width: 767px){

  .filter-control{

    grid-template-columns: repeat(4,1fr);
    max-width: 90%;
  }

  .filter-btn{
    
    font-size: var(--normal-font-size);
  }

  .hero__container{
    /* grid-template-columns: repeat(2,1fr); */
    padding-top: 2rem;
  }

  .hero__data{
    padding-bottom: 2rem;
  }

  .logo__container{
    grid-template-columns: repeat(4,max-content);
    justify-content: center;
  }

  .value__container, .contact__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .contact__images{
    order: 1;
  }

  .contact__card{
    justify-content: initial;
  }

  .footer__container{
    grid-template-columns: repeat(2,1fr);
    justify-content: space-between;
    column-gap: 1.5rem;
  }
  
  /* .about__page-container{
    grid-template-columns: 2fr 3fr;
    align-items: center;
    padding: 2rem 0;
  } */

  .about__page-head{
    text-align: left;
    margin-bottom: 0;
  }

  iframe{
    width: 90%
  }

  .about__page-mission{
    grid-template-columns: repeat(2,1fr);
    column-gap: 2rem;
    align-items: center;
  }

  .about__page-vision{
    grid-template-columns: repeat(2,1fr);
    column-gap: 2rem;
    align-items: center;
  }

  .about-service-container{
    grid-template-columns: repeat(3,1fr);
  }

  .about__page-img1{
    max-width: 300px;
 
  }
  .about__page-img1{
    max-width: 180px;
 
  }

  .about__page-logo{

    justify-content: flex-start;

  }

  .listProduct{
    grid-template-columns: repeat(3,1fr) !important;
    
  }

  .slider-button-next,.slider-button-prev{
    font-size: 3rem;
  }
  
  /* .cat-btn{
    padding: 9px 18px;
    font-size: var(--normal-font-size) !important;
  } */
 
}

@media screen and (min-width: 1023px){

  .cat-btn{
    display: block;
  }

  .topbar {
    display: block;
  }


  .fill{
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
  }

  .hero__images{
    order: 2;
  }

  .filler__container{
    /* padding-left: 14rem; */
    margin-top: 0;
  }

  .filler__btn,
  .catchy__title,
  .filler__desc{
    text-align: left;
  }

  .logo__img{
    padding-top: 0;
  }

  .header{
    height: 5rem;
  }
  .section{
    padding: 7.5rem 0 1rem;
  }

  .section__title{
    font-size: 2.25rem;
  }

  .section__subtitle{
    font-size: var(--normal-font-size);
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__toggler{
    display: none;
  }

  .nav__menu{
    width: initial;
    /* margin-left: auto;
    margin-right: auto; */
  }



  .nav__list{
    display: flex;
    column-gap: 3rem;
  }

  .nav__link{
    color: var(--text-color-light);
    justify-content: initial;
    column-gap:.25rem
  }

  .dropdown__item
  {
    position: relative;
  }

  .dropdown,
  .sub-dropdown{
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 4rem !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
    background-color: var(--body-color-black);
    border-radius: 0.5rem;
  }
  .dropdown__item a,
  .dropdown li a{
    padding-inline: 1rem 3.5rem;
  }

  .sub-dropdown li a{
    padding-inline: 0.5rem;
    font-size: 1rem;
  }

  .sub-dropdown{
    position: absolute;
    left: 100%;
    top: .5rem;
    min-width:250px;
  }

  .dropdown__item:hover .dropdown{
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  .dropdown li:hover .sub-dropdown{
    opacity: 1;
    top: 0 !important;
    pointer-events: initial;
    transition: top .3s;
  }

  .sub-dropdown li a{
    padding: 0.5rem 1rem;
  }

  .active-link{
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }

  .reveal-header .nav__link{
      color: var(--text-color);
  }

  .reveal-header .active-link{
    color: var(--first-color)
  }

  .home{
    padding-bottom: 0;
  }

  .hero__container{
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .hero__data{
    padding-bottom: 4rem;
  }

  .hero__title{
    margin-bottom: 2rem;
  }

  .hero__desc, .search__form{
    margin-bottom: 3rem;
  }

  .hero__value{
    column-gap: 3.5rem;
  }

  .logo-img{
    height: 100px;
  }

  .product__container{
    padding-top: 3rem;
  }

  .product__card{
    width: 375px;
    padding:  .75rem .75rem 2rem;
  }

  .product__page #product-details{
    display: grid;
    /* grid-template-columns: repeat(2,1fr); */
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
  }

  

  .product__page .product__data{
    padding: 0 .25rem 0 .75rem;
    display: grid;
    row-gap: 1.5rem;
  }

  .product__page .product__data #product-name{
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .product__page .product__data #product-desc{
    font-size: 1.5rem;
    
  }

  .product__page .container{
    grid-template-columns: 0.5fr 1fr;
    align-items: flex-start;
    column-gap: 2rem;
  }

  .product__page .catalogue__details{
    order: unset;

  }


  .value__container, .contact__container{
    align-items: center;
    column-gap: 5rem;
  }

  .value__circle, .contact__circle{
    width: 501px;
    height: 641px;
    border-radius: 258px 258px 16px 16px;
  }

  .value__img, .contact__img{
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }

  .value__img img, .contact__img img{
    max-width: initial;
    width: 490px;
  }

  .value__desc, .contact__desc{
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .value__accordion-title{
    font-size: var(--normal-font-size);
  }

  .value__accordion-item{
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .value__accordion-desc{
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }

  .contact__card{
    grid-template-columns: repeat(2,200px);
  }

  .contact__box{
    padding: 28px 1.5rem 1.5rem;
  }

  .footer__content{
    grid-template-columns: repeat(2,1fr);
  }

  .footer__title{
    margin-bottom: 1.5rem;
  }

  .footer__links{
    row-gap: 1rem;
  }

  .footer__info{
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }

  .footer__desc{
    width: 80%;
  }

  .show-scroll{
    bottom: 3rem;
    right: 3rem;
  }

  .main-page-content{
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  .main-page-title{
    font-size: 10vw !important;
    margin-left: 40px;
    /* line-height: 5vw; */
  }

  .about__page-head p{
   
    font-size: 2.5rem !important;
    line-height: 3.5rem !important;

  }

  .product__search{
    width: 90% !important;
  }

  .listProduct{
    grid-template-columns: repeat(4,1fr) !important;
    
  }
  .slider-button-next,.slider-button-prev{

    font-size: 4rem;

  }

  main .contact__item{
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1040px){


  .hero__container{
    column-gap: 4rem;
  }
}

@media screen and (min-width: 1250px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }


}

@media screen and (min-width: 2048px){
  body{
    zoom: 1.5;
  }
}

@media screen and (min-width: 3840px){
  body{
    zoom: 2;
  }
}

.hero__data{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__page-head{
  text-align: center;
  padding-inline: 1rem;
  margin-bottom: 2rem;
}



.about__page-head p{
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: var(--text-color);
}

.about__page-btn{
  margin: 0 auto;
}

.container__right{
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2rem;
}

.container__right::before{
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  transform-origin: left;
  height: 80%;
  background-color: #222;
  border-radius: 1rem;
  z-index: -1;
  animation:  show .75s 1.25s ease-in-out forwards;

}


@keyframes show{
  0%{
    width: 100%;
  }
  100%{
    width: calc(100% - 2rem);
  }
}

.about__page-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__page-img1{
  max-width: 200px;
  transform: translateX(1rem);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.about__page-img2{
  max-width: 110px;
  transform: translateX(-1rem);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.about__page-content{
  padding-block: 0 5rem;
  padding-inline: 2rem;
  text-align: center;
}

.about__page-content h4{
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color-black);
}

.about__page-content h2{
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-color-light);
}

.about__page-content p{
  line-height: 1.75rem;
  color: #fff;
  padding: 1rem;
}

.about__page-logo{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.about__page-logo img{
  width: 30px;
}

.red{
  color: var(--first-color);
}

.about__page-mission{
  margin-bottom: 4rem;
}

.about__page-title{
  position: relative;
}

.service-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--container-color-black);
  color: #fff;
  row-gap: 1rem;
  margin: 1.5rem 1.5rem 1.5rem 0;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.service-card h3{
  color: #fff;
  font-weight: 400;
  font-size: var(--small-font-size);
  text-align: center;
}

.service-card i{
  font-size: 42px;
  color: var(--first-color);
}

/* #product__page .main-hero{
  height: 50vh !important;
} */

.main-hero{
  height: 60vh;
  width: 100%;
}

.main-hero video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: fixed;
  z-index: -1;
}

.main-page-content{
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.321);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-page-title{
  font-size: 20vw;
  color: #fff;
  /* margin-left: 40px; */
  /* line-height: 5vw; */
}

/* .main-page-title::after{
  content: '';

  width: 2rem;
  height: 8rem;
  background: var(--first-color);
  left: 0;
  bottom: 5rem;
  
 
} */


.main-page-content span{
  color: var(--first-color);
}

.product__page{

  width: 100%;
  background-color: var(--body-color);
  z-index: 2;
  position: relative;
}

.contact__item{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  /* align-items: center; */
  margin-bottom: 1rem;
  font-size: var(--small-font-size);
}

.contact__item i{
  color: var(--first-color);
  font-size: 1.5rem;
}

.contact__fields{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__form .contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__form .contact__item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none ;
  outline: none;
  border: none;
  color: var(--text-color);
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}

.contact__form .contact__item:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

.contact__form .contact__item:not(:placeholder-shown).contact__item:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

.contact__form .btn{
  margin-top: 2rem;
}

.product__list{

  padding-bottom: 4rem;
}

.listProduct{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 4rem;
}

.listProduct .product__item{
  padding: 20px;
  background-color: var(--container-color);
  box-shadow: 0 12px 16px hsla(0, 0%, 0%, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  row-gap: 1rem;
}

/* .product__page-img{
  height: 280px;
  width: 100%;
}


.product__page-img img{
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
} */




@media (max-height: 720px) and (min-width: 1023px){
  .sub-dropdown li a {
    padding: 0.35rem 0.75rem !important;
  }

  .sub-dropdown li a {
    font-size: 0.75rem !important;
  }
}