/*Hero*/
.hero {
  background: #0b2a3b url("../img/Background 4.png") no-repeat center;
  background-size: cover;
  padding: 70px 0;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 41px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 520px;
}



/*Search part*/
.search-section h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box input {
  width: 320px;
  max-width: 100%;
  height: 46px;

  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 18px;

  font-size: 15px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-box input:focus {
  box-shadow: 0 0 0 3px rgba(0, 137, 150, 0.25);
}

.search-box button {
  height: 46px;
  min-width: 90px;

  border: 0;
  border-radius: 999px;
  background: #2e8b8b;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  -webkit-appearance: none;
  appearance: none;
}

.search-box button:hover {
  background: #65d6d6;
}

.search-box button img {
  width: 30px;
  height: 30px;
}

.hero-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.hero-img img {
  max-width: 520px;
  width: 100%;
  height: auto;
}


/*Banner Strip*/
.catalog-page .banner-strip {
  background: #eef4f4;
  text-align: center;
  padding: 22px 12px;
  font-size: 16px;
  color: #333;
}


/*atalog Section*/
.catalog-page .catalog {
  padding: 55px 0 70px;
  background: #fff;
}

.catalog-page .catalog h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 34px;
}


/*Cards*/
.catalog-page .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.catalog-page .card {
  width: 260px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-page .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.catalog-page .card-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

.catalog-page .card-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 14px;
}


/*button*/
.catalog-page .btn-view {
  display: inline-block;
  background: #008996;
  color: #fff;
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.catalog-page .btn-view:hover {
  background: #58cdd8;
}


/*Loader*/
.catalog-page .loader {
  margin-top: 45px;
  text-align: center;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.catalog-page .arrow-down {
  display: inline-block;
  margin-left: 6px;
  font-size: 16px;
}


/*Responsive */
/*Tablet*/
@media (max-width: 992px) {

  .catalog-page .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .catalog-page .search-box {
    justify-content: center;
  }
}

/*Small phone*/
@media (max-width: 780px) {
  .hero {
    padding: 50px 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-img {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .search-box {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
	  
  }
  .catalog-page .card {
    width: 100%;
    max-width: 320px;
  }
}