:root {
  --teal: #36C2C9;
  --orange: rgb(241, 90, 34);
  --black: #000000;
  --white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 26px;
  --fs-body: 16px;
  --fs-small: 14px;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');

.equipment{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.buttons{
    display: flex;
    justify-content: center;
    gap: 50px;
}
.buttons button{
    padding: 10px 25px;
    background: transparent;
    color: black;
    transition: all 0.5s ease-in-out;
    font-weight: 500;
}
.buttons .active{
  background-color: #F15A22;;
}
.equipment .card{
  max-width: 100%;
  width: 280px;
  height: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid black;
  border-radius: 20px;
}
.card .img {
  width: 100%;
}
.card .img img{
  width: 100%;
  height: 200px;
    border-radius: 20px;
    padding: 2px;
}
.card .content{
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
.card .content h3{
  font-weight: bolder;
  color: #000000;
  background-color: var(--teal);
  font-size: 1.3rem;
}
.card .content p{
  font-size: 1rem;
  font-weight: bold;
}
.card .content a{
  font-size: 1rem;
  font-weight: bold;
  border: none;
  padding: 7px 10px;
  background-color: #F15A22;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.card .content button:hover{
  transform: scale(1.1)
}
.hidden{
  display: none;
}
.visible{
  display: block;
}
.mini-card{
  width: 200px;
  /* max-width: 50%; */
  height: 200px;
  border: 2px solid black;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom:5px;
}
.mini-card img{
  width: 100%;
  height: 50%;
  border-bottom: 2px solid black;
  border-radius: 20px;
}
.mini-card button{
  padding: 5px 5px;
}
.mini-card p{
 font-weight: bold;
   font-size: 0.8rem;
}
.grid{
  display: grid;
  grid-template-columns:auto auto;
}
.grid-item i{
  font-size: 1.5rem;
  color:#36C2C9; ;
}
#product{
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #36C2C9;
  z-index: 1;
  padding: 0px;
}
#product h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: var(--lh-tight);
  /* color: var(--teal); */
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#product p {
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: var(--lh-normal);
  color: #e0e6eb;
}
#product img{
  width: 150px;
  height: 150px;
  border-radius: 10px;
}
#product .images{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width:700px){
  #product{
      margin: 0 auto;
  }
  #product img{
  width: 100px;
  height: 75px;
}
#product p {
  font-size: 1.5rem;
}
.equipment .card{
  height: 300px;
}
.card .img img{
  height: 130px;
}
.card .content{
  height: 170px;
}
.flex{
  gap: 10px;
}
.mini-card{
  max-width: 100%;
  width: 280px;
}
}
.grid{
  display: grid;
  grid-template-columns: auto auto;
}

@media (max-width:700px) {
  .grid{
    grid-template-columns: auto;
  }

}

#hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

#hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
}
@media (min-width:919px) {
  .swiper-wrapper{
      gap: 50px;
}
}

.swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  /* height: 70%; */
}

/* Swiper buttons & pagination */
.swiper-button-prev, .swiper-button-next {
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
}
.swiper-button-prev div, .swiper-button-next div{
  background-color: var(--orange);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination span{
  background-color: var(--orange);
}
.btn-king{
  padding: 9px 10px;
}
@media (max-width:700px){
    #hero {
    background-position: right;
  }
}