/* Office Card Hover Effect (Contact Page) */
.bg-white.mb-3.rounded.w-100.shadow-lg {
  transition: box-shadow 0.3s, transform 0.3s;
}
.bg-white.mb-3.rounded.w-100.shadow-lg:hover {
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.18);
  transform: translateY(-6px) scale(1.03);
  border-color: #007bff;
}
/* Modern Blog Hero and Wave (blog.html) */
.modern-hero {
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
  background-size: cover;
  -webkit-mask-image: url("../images/wave.svg");
  mask-image: url("../images/wave.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  z-index: 1;
  pointer-events: none;
}
@supports not (
  (-webkit-mask-image: url("../images/wave.svg")) or
    (mask-image: url("../images/wave.svg"))
) {
  .blog-hero .blog-hero-wave {
    background: url("../images/wave.svg") center bottom/cover no-repeat,
      linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
    height: 60px;
  }
}
/* =============================
   Blog Page Styles
   (from blog.html)
   ============================= */
.blog-hero {
  background: linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
  color: #fff;
  padding: 90px 0 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
}
.blog-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.7rem;
  animation: fadeInDown 1s;
  text-shadow: 0 2px 12px rgba(0, 123, 255, 0.15);
}
.blog-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s;
  margin-bottom: 0.5rem;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.blog-card {
  background: linear-gradient(120deg, #f8faff 60%, #e0e7ff 100%);
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(0, 123, 255, 0.1),
    0 1.5px 6px rgba(52, 73, 102, 0.07);
  padding: 2.2rem 2rem 2.2rem 2rem;
  width: 70vw;
  max-width: 900px;
  min-width: 320px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1.2s;
  position: relative;
  border: 1.5px solid #e0e7ff;
}
.blog-card h2 {
  font-size: 1.7rem;
  color: #0056b3;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #007bff 30%, #00c6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-card .blog-meta {
  font-size: 1.05rem;
  color: #4aa1a8;
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.blog-card .blog-content {
  font-size: 1.13rem;
  color: #222;
  line-height: 1.8;
  padding-bottom: 0.2rem;
}
.blog-card .blog-content h4 {
  color: #007bff;
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}
.blog-card .blog-content ul {
  margin-left: 1.2rem;
  margin-bottom: 0.7rem;
}
.blog-card .blog-content ul li {
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
}
.blog-card .blog-content strong {
  color: #0056b3;
  font-weight: 700;
}
@media (max-width: 991px) {
  .blog-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .blog-card {
    width: 98vw;
    max-width: 98vw;
  }
  .blog-hero h1 {
    font-size: 2rem;
  }
}

/* Blog Hero Wave (SVG Mask) */
/* Blog Hero Wave (SVG Mask) */
/* Blog Hero Wave (SVG Mask) */
.blog-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: #344966;
  mask-image: url(images/wave.svg);
  mask-size: cover;
  mask-repeat: repeat-x;
  z-index: 1;
}
@supports not (
  (-webkit-mask-image: url("../images/wave.svg")) or
    (mask-image: url("../images/wave.svg"))
) {
  .blog-hero-wave {
    background: url("../images/wave.svg") center bottom/cover no-repeat,
      linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
    height: 60px;
  }
}

/* =============================
   Error Page Styles
   (from error.html)
   ============================= */
.error-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #ff6a6a 0%, #ffd6d6 100%);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(255, 106, 106, 0.08);
  margin: 40px auto;
  padding: 60px 20px;
  max-width: 600px;
  animation: fadeInDown 1.1s;
}
.error-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
}
.error-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.error-section .btn {
  margin: 0 10px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
  transition: background 0.2s, color 0.2s;
}
.error-section .btn-primary {
  background: #fff;
  color: #ff6a6a;
  border: none;
}
.error-section .btn-primary:hover {
  background: #ff6a6a;
  color: #fff;
}
.error-section .btn-outline-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.error-section .btn-outline-secondary:hover {
  background: #fff;
  color: #ff6a6a;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   Loading Page Styles
   (from loading.html)
   ============================= */
body.loading-page {
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
.loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  .blog-hero-wave {
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px 40px;
    background: #344966
      url("data:image/svg+xml;utf8,<svg width='1240' height='108' viewBox='0 0 1240 108' xmlns='http://www.w3.org/2000/svg'><g fill='%23344966'><path d='M0,18 C34,6 85,0 153,0 C255,0 284,21 372,27 C460,33 505,9 655,6 C805,3 870,36 949,38 C1029,39 1042,14 1093,10 C1128,7 1177,14 1240,32 V108 H0 V18 Z'/></g></svg>")
      center bottom/100% 100% no-repeat;
    background-color: #344966;
  }
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.spinner {
  width: 80px;
  height: 80px;
  border: 8px solid #e0e0e0;
  border-top: 8px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-text {
  margin-top: 32px;
  font-size: 1.2rem;
  color: #01152b;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =============================
   More Products Page Styles
   (from more-products.html)
   ============================= */
.maintenance-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(52, 73, 102, 0.12);
  margin: 40px auto;
  padding: 60px 20px;
  max-width: 600px;
  animation: fadeInDown 1.1s;
}
.maintenance-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.maintenance-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   Product Page Styles
   (from product.html)
   ============================= */
.product-hero {
  background: linear-gradient(120deg, #007bff 0%, #00c6ff 100%);
  color: #fff;
  padding: 64px 0 32px 0;
  text-align: center;
  position: relative;
}
.product-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  width: 350px;
  min-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.12);
}
.product-card h2 {
  font-size: 1.3rem;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.product-card .product-desc {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .product-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .product-card {
    width: 98vw;
    max-width: 98vw;
  }
  .product-hero h1 {
    font-size: 2rem;
  }
}

/* =============================
   Thank You Page Styles
   (from thankyou.html)
   ============================= */
@media (max-width: 600px) {
  .thankyou-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .thankyou-btns a {
    width: 100%;
  }
}
/* =============================
   Career Page Styles
   (from career.html)
   ============================= */
.career-logo-img {
  height: 38px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 8px;
}
.career-logo-text {
  font-weight: 700;
  color: #344966;
  font-size: 1.3rem;
  vertical-align: middle;
}
.error-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #dd0505 0%, #ffd6d6 100%);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(255, 106, 106, 0.08);
  margin: 40px auto;
  padding: 60px 20px;
  max-width: 600px;
  animation: fadeInDown 1.1s;
}
.career-error-icon {
  font-size: 4rem;
  color: #ff6a6a;
  margin-bottom: 1rem;
}
.career-error-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
}
.career-error-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.career-error-btn {
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
  transition: background 0.2s, color 0.2s;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =============================
   Career Page Styles
   (from career.html)
   ============================= */
.error-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #dd0505 0%, #e66a6a 100%);
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(255, 106, 106, 0.08);
  margin: 40px auto;
  padding: 60px 20px;
  max-width: 600px;
  animation: fadeInDown 2s cubic-bezier(1, -0.01, 0.52, 1.01);
}
.error-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
}
.error-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.error-section .btn {
  margin: 0 10px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(255, 106, 106, 0.12);
  transition: background 0.2s, color 0.2s;
}
.error-section .btn-primary {
  background: #fff;
  color: #ff6a6a;
  border: none;
}
.error-section .btn-primary:hover {
  background: #ff6a6a;
  color: #fff;
}
.error-section .btn-outline-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.error-section .btn-outline-secondary:hover {
  background: #fff;
  color: #ff6a6a;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  user-select: none;
}

body {
  line-height: 1.7;
  color: #eaeaea;
  font-weight: 300;
  font-size: 16px;
  background-color: #344966;
  font-family: "Rubik", Arial, sans-serif;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

a {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
a:hover {
  text-decoration: none;
}

.text-black {
  color: #000;
}

.site-wrap:before {
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-menu .site-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.offcanvas-menu .site-wrap:before {
  opacity: 1;
  visibility: visible;
}

.btn {
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;
  border-width: 2px;
}
.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn.btn-primary:hover {
  background: transparent;
  color: #51eaea;
}
.btn.btn-black {
  background: #000;
  color: #fff;
}
.btn.btn-black:hover,
.btn.btn-black:active,
.btn.btn-black:focus {
  background-color: #51eaea;
  color: #000;
}

.form-control {
  height: 43px;
}
.form-control:active,
.form-control:focus {
  border-color: #51eaea;
}
.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.site-section {
  padding: 2.5em 0;
  border-radius: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .site-section {
    padding: 5em 0;
  }
}
.site-section.site-section-sm {
  padding: 4em 0;
}

.site-section-heading {
  font-size: 30px;
  color: #25262a;
  position: relative;
}
.site-section-heading:before {
  display: none;
  content: "";
  left: 0%;
  top: 0;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #51eaea;
}
.site-section-heading.text-center:before {
  display: none;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  width: 40px;
  height: 2px;
  background: #51eaea;
}

.border-top {
  border-top: 1px solid #edf0f5 !important;
}

footer .container > .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer {
  padding: 6em 0;
  background: #232946;
  color: #eaeaea;
}

.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer ul li a {
  color: #eaeaea;
}
.site-footer ul li a:hover {
  color: #51eaea;
}
.site-footer .footer-heading {
  font-size: 1.2rem;
  color: #f9fafc;
  margin-bottom: 1rem;
}

/* Navbar */
.site-logo a {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 22px;
  color: #000 !important;
  font-weight: 900;
}
.site-logo a:hover {
  text-decoration: none;
}

.icons-btn {
  display: inline-block;
  text-align: center;
}
.icons-btn span {
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .icons-btn span {
    width: 24px;
  }
}

.site-menu-toggle {
  display: block;
  text-align: center;
  font-size: 28px;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.site-menu-toggle > span {
  top: 5px;
  position: relative;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  top: 0;
  width: 100%;
  background: #fff;
}
.site-navbar.position-relative {
  position: relative;
  background: #f9f9f9 !important;
}
.site-navbar.transparent {
  background: transparent;
}
.site-navbar .site-navbar-top {
  border-bottom: 1px solid #f3f3f4;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .site-navbar .site-navbar-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.site-navbar .site-search-icon a span {
  display: inline-block;
  margin-right: 10px;
}
.site-navbar .site-search-icon a:hover {
  text-decoration: none;
}
.site-navbar a {
  color: #000;
}
.site-navbar a:hover {
  color: #000;
}
.site-navbar .icon {
  font-size: 20px;
}
.site-navbar .site-top-icons ul,
.site-navbar .site-top-icons ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-navbar .site-top-icons ul li {
  display: inline-block;
}
.site-navbar .site-top-icons ul li a {
  margin-right: 10px;
}
.site-navbar .site-top-icons ul li a.site-cart {
  display: block;
  position: relative;
}
.site-navbar .site-top-icons ul li a.site-cart .count {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -15px;
  margin-top: -20px;
  font-size: 13px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  display: block;
  text-align: center;
  background: #51eaea;
  color: #fff;
  -webkit-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
.site-navbar .site-top-icons ul li a:hover .count {
  -webkit-box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3) !important;
  margin-top: -22px;
}
.site-navbar .site-top-icons ul li:last-child a {
  padding-right: 0;
}
.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid #f3f3f4 !important;
}
.site-navbar .site-navigation .site-menu {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.site-navbar .site-navigation .site-menu .active > a {
  color: #000;
  position: relative;
}
.site-navbar .site-navigation .site-menu .active > a:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #000;
  bottom: 0;
}
.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  font-size: 15px;
  display: inline-block;
}
.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  padding: 10px 5px;
}
.site-navbar .site-navigation .site-menu > li > a {
  padding: 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #25262a;
  font-size: 15px;
  text-decoration: none !important;
}
.site-navbar .site-navigation .site-menu > li > a:hover {
  color: #000;
}
.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}
.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}
.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "icomoon";
}
.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #51eaea;
  -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.05);
  border-left: 1px solid #edf0f5;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: #51eaea !important;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}
.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li
  > a:hover {
  background: #f4f5f9;
  color: #25262a;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > a:before {
  content: "\e315";
  right: 20px;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > .dropdown,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children
  > ul {
  left: 100%;
  top: 0;
}
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:hover
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:active
  > a,
.site-navbar
  .site-navigation
  .site-menu
  .has-children
  .dropdown
  > li.has-children:focus
  > a {
  background: #f4f5f9;
  color: #25262a;
}
.site-navbar .site-navigation .site-menu .has-children a {
  text-transform: uppercase;
}
.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
  color: #000;
}
.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}
.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 40px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #25262a;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.2em;
  font-size: 22px;
  font-weight: 900;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}
.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}
.site-mobile-menu .site-nav-wrap a:hover {
  color: #51eaea;
}
.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}
.site-mobile-menu .site-nav-wrap li.active > a {
  color: #51eaea;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 18px;
  z-index: 20;
  font-family: "icomoon";
  content: "\e313";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}
.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
  padding: 0;
  margin: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
  display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
  font-size: 16px;
  padding-left: 60px;
}

/* Blocks */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.site-blocks-cover,
.site-blocks-cover > .container > .row {
  min-height: 700px;
  height: calc(100vh);
}
.site-blocks-cover.inner-page,
.site-blocks-cover.inner-page .row {
  min-height: 400px;
  height: 700px;
}
.site-blocks-cover h2 {
  font-size: 14px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .featured-hero-product {
    margin-top: 10%;
    position: absolute;
  }
}
.site-blocks-cover h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .site-blocks-cover h1 {
    font-size: 70px;
  }
}
.site-blocks-cover p {
  color: #fff;
  font-size: 20px;
  line-height: 35px;
}
.site-blocks-cover .intro-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.site-blocks-cover.inner-page .site-block-cover-content {
  margin-top: 20%;
  text-align: center;
}
@media (min-width: 768px) {
  .site-blocks-cover.inner-page .site-block-cover-content {
    margin-top: 30%;
  }
}
.site-blocks-cover .sub-title {
  color: #fff;
}
@media (max-width: 991.98px) {
  .site-blocks-cover .img-1 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-blocks-cover .btn {
  padding: 20px 30px;
}

.site-blocks-1 {
  border-bottom: 1px solid #edf0f5;
}
.site-blocks-1 .divider {
  position: relative;
}
.site-blocks-1 .divider:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: 10px;
  background: #edf0f5;
}
.site-blocks-1 .divider:last-child:after {
  display: none;
}
.site-blocks-1 .icon span {
  position: relative;
  color: #6c757d;
  top: -10px;
  font-size: 50px;
  display: inline-block;
}
.site-blocks-1 .text h2 {
  color: #25262a;
  letter-spacing: 0.05em;
  font-size: 18px;
}
.site-blocks-1 .text p:last-child {
  margin-bottom: 0;
}

.site-blocks-2 .block-2-item {
  display: block;
  position: relative;
}
.site-blocks-2 .block-2-item:before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(
    top,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    color-stop(18%, transparent),
    color-stop(99%, rgba(0, 0, 0, 0.8)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: -o-linear-gradient(
    top,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.8) 99%,
    rgba(0, 0, 0, 0.8) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
.site-blocks-2 .block-2-item .image {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.site-blocks-2 .block-2-item .image img {
  margin-bottom: 0;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.site-blocks-2 .block-2-item .text {
  z-index: 2;
  bottom: 0;
  padding-left: 20px;
  position: absolute;
  width: 100%;
}
.site-blocks-2 .block-2-item .text > span,
.site-blocks-2 .block-2-item .text h3 {
  color: #fff;
}
.site-blocks-2 .block-2-item .text > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.site-blocks-2 .block-2-item .text h3 {
  font-size: 40px;
}
.site-blocks-2 .block-2-item:hover .image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.block-3 .no-direction .owl-nav {
  display: none;
}

.block-3 .owl-stage {
  padding-top: 40px;
  padding-bottom: 40px;
}

.block-3 .owl-nav .owl-prev,
.block-3 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2rem;
}

.block-3 .owl-nav .owl-prev {
  left: 0;
}

.block-3 .owl-nav .owl-next {
  right: 0;
}

.block-3 .owl-dots {
  text-align: center;
}
.block-3 .owl-dots .owl-dot {
  display: inline-block;
}
.block-3 .owl-dots .owl-dot > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  background: #ccc;
}
.block-3 .owl-dots .owl-dot.active > span {
  background: #51eaea;
}

.block-3 .product {
  border-right: none !important;
  border-left: none !important;
}
.block-3 .product .item {
  border: 1px solid #eee;
}

.block-4 {
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.block-4 .block-4-text h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.block-4 .block-4-text h3 a {
  text-decoration: none;
}

.block-5 ul,
.block-5 ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

.block-5 ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: #25262a;
}
.block-5 ul li:before {
  top: 0;
  font-family: "icomoon";
  content: "";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: #51eaea;
}
.block-5 ul li.address:before {
  content: "\e8b4";
}
.block-5 ul li.email:before {
  content: "\f0e0";
}
.block-5 ul li.phone:before {
  content: "\f095";
}

.block-6 {
  display: block;
}
.block-6 img {
  display: block;
}
.block-6 h3 {
  font-size: 18px;
}
.block-6 p {
  color: #737b8a;
}

.block-7 .form-group {
  position: relative;
}

.block-7 .form-control {
  padding-right: 96px;
}

.block-7 .btn {
  position: absolute;
  width: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 3px;
}

.block-8 .post-meta {
  color: #c4c7ce;
}

.block-8 .block-8-sep {
  margin-left: 10px;
  margin-right: 10px;
}

.site-blocks-table {
  overflow: auto;
}
.site-blocks-table .product-thumbnail {
  width: 200px;
}
.site-blocks-table thead th {
  padding: 30px;
  text-align: center;
  border-width: 1px !important;
  vertical-align: middle;
  color: #212529;
  font-size: 18px;
  font-weight: normal;
}
.site-blocks-table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: #212529;
}
.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid #51eaea !important;
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important;
}

.site-block-order-table td,
.site-block-order-table th {
  color: #000;
}

.site-block-top-search {
  position: relative;
}
.site-block-top-search .icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-block-top-search input {
  padding-left: 40px;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.site-block-top-search input:focus,
.site-block-top-search input:active {
  padding-left: 25px;
}

.site-block-27 ul,
.site-block-27 ul li {
  padding: 0;
  margin: 0;
}

.site-block-27 ul li {
  display: inline-block;
  margin-bottom: 4px;
}
.site-block-27 ul li a,
.site-block-27 ul li span {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #000;
}
.site-block-27 ul li.active a,
.site-block-27 ul li.active span {
  background: #343a40;
  color: #fff;
  border: 1px solid transparent;
}

#slider-range {
  height: 8px;
}
#slider-range .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none !important;
  background: #51eaea;
}
#slider-range .ui-slider-handle:focus,
#slider-range .ui-slider-handle:active {
  outline: none;
}
#slider-range .ui-slider-range {
  background-color: #51eaea;
}

.color-item .color {
  width: 14px;
  height: 14px;
}

.block-16 figure {
  position: relative;
}
.block-16 figure .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  width: 90px;
  height: 90px;
  background: #fff;
  display: block;
  border-radius: 50%;
  border: none;
}
.block-16 figure .play-button:hover {
  opacity: 1;
}
.block-16 figure .play-button > span {
  position: absolute;
  left: 55%;
  top: 50%;
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}

.block-38 .block-38-header .block-38-heading {
  color: #000;
  margin: 0;
  font-weight: 300;
}

.block-38 .block-38-header .block-38-subheading {
  color: #b3b3b3;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.block-38 .block-38-header img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.bag {
  position: relative;
}
.bag .number {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  color: #000;
  font-size: 12px;
  background: #51eaea;
  right: -5px;
}

.search-wrap {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.search-wrap .container {
  position: relative;
  height: 100%;
}
.search-wrap.active {
  opacity: 1;
  visibility: visible;
}
.search-wrap .form-control {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  z-index: 3;
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .search-wrap .form-control {
    font-size: 20px;
  }
}
.search-wrap .search-close {
  z-index: 4;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-wrap .search-close span {
  font-size: 30px;
}

.title-section.text-center h2 {
  padding-top: 0.8rem;
  display: inline-block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
}
.title-section.text-center h2:after {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #51eaea;
  content: "";
}

.product-item {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.product-item .product-category {
  position: absolute;
  display: inline-block;
  padding: 10px 30px;
  background: #fff;
  color: #000;
  z-index: 8;
  top: 60%;
  left: 50%;
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.product-item .product-category span {
  color: #ced4da;
  font-size: 12px;
}
.product-item .product-category:hover {
  background: #000;
  color: #fff;
}
.product-item .product-category:hover span {
  color: rgba(255, 255, 255, 0.5);
}
.product-item.full-height {
  height: 100% !important;
}
@media (max-width: 991.98px) {
  .product-item.full-height {
    height: 300px !important;
    margin-bottom: 30px;
  }
}
.product-item.bg-gray {
  background: #f9f9f9;
}
.product-item.sm-height {
  height: 300px;
  padding: 40px;
}
.product-item.md-height {
  height: 700px;
  padding: 40px;
}
.product-item img {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  position: absolute;
}

.item-entry .product-item {
  margin-bottom: 30px;
}

.item-entry .item-title {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
}
.item-entry .item-title a {
  color: gray;
}
.item-entry .item-title a:hover {
  color: #000;
}

.item-entry .item-price {
  color: #000;
  font-weight: normal;
}
.item-entry .item-price del {
  color: #b3b3b3;
}

.custom-border-bottom {
  border-bottom: 1px solid #f9f9f9;
}

.custom-border-top {
  border-top: 1px solid #f9f9f9;
}

.height-auto {
  height: auto !important;
}

.featured-hero-product {
  text-align: center;
}
.featured-hero-product h1,
.featured-hero-product h4 {
  color: #000;
}
.featured-hero-product h1 {
  font-size: 4rem;
  letter-spacing: 1rem;
}
@media (max-width: 991.98px) {
  .featured-hero-product h1 {
    font-size: 2rem;
  }
}
.featured-hero-product h4 {
  font-size: 1rem;
}
.featured-hero-product .price {
  font-size: 2rem;
  color: #000;
}
@media (max-width: 991.98px) {
  .featured-hero-product .price {
    font-size: 1.5rem;
  }
}
.featured-hero-product .price del {
  margin-left: 10px;
  color: #6c757d;
}

.border {
  border: 1px solid #eee !important;
}
.border a {
  display: block;
  padding: 30px;
}

.item h3 a {
  color: #000;
}

.item .price {
  color: #000;
}

.tag {
  position: absolute;
  background: #e86b00;
  color: #fff;
  letter-spacing: 0.2em;
  padding: 7px 20px;
  font-size: 0.8rem;
  font-weight: 900;
  top: 0;
  left: 0;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transform: rotate(-90deg) translateX(-100%) translateY(-70%);
  -ms-transform: rotate(-90deg) translateX(-100%) translateY(-70%);
  transform: rotate(-90deg) translateX(-100%) translateY(-70%);
}

.banner-wrap {
  background: #74d12b;
  border-radius: 4px;
}
.banner-wrap a {
  padding: 30px;
  display: block;
  text-align: center;
}
.banner-wrap a h5 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 10px;
}
.banner-wrap a h5,
.banner-wrap a p {
  color: #fff;
}
.banner-wrap a p {
  color: #fff;
  font-size: 1.4rem;
}
.banner-wrap a p strong {
  font-size: 0.9rem;
  display: block;
}

.banner-1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  display: block;
  min-height: 300px;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  top: 0;
}
.banner-1:hover {
  top: -10px;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.4);
}
.banner-1 .banner-1-inner {
  width: 50%;
}
.banner-1 .banner-1-inner h2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
}
.banner-1 .banner-1-inner p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
}

.testimony blockquote p {
  color: #000;
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-style: italic;
}

.bg-image {
  background-size: cover;
  position: relative;
}
.bg-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(81, 234, 234, 0.9);
  z-index: 1;
}
.bg-image > .container {
  position: relative;
  z-index: 2;
}

.section-overlap {
  margin-top: -150px;
}

.custom-pill .nav-item {
  margin-right: 4px;
}
.custom-pill .nav-item a {
  background: #f4f4f4;
  color: #000 !important;
}

.custom-table th {
  color: #000;
  font-weight: normal;
}

.custom-table td {
  color: #000;
}

.half-size {
  width: 100% !important;
  height: 620px !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

/* changes at last  */
.logo_small_s2 {
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 100;
  color: darkgray;
}

.product_head_title {
  width: 100%;
}

.product_head_title h2 {
  color: white;
}

.P_note {
  font-size: 1rem;
}

.P_list {
  display: block;
  margin-left: auto;
  margin-right: 0;
  list-style-type: circle;
}

.P_list {
  margin-left: 1.5rem;
  padding-left: 1.2rem;
}

@media (max-width: 767.98px) {
  .P_list {
    margin-left: 1.2rem;
    padding-left: 1.2rem;
  }
}

.banner-ratio {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-ratio:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(81, 234, 234, 0.18);
  z-index: 2;
}

/* Modern Professional Styling Enhancements */
.hero-section {
  position: relative;
  color: #fff;
  padding: 110px 0 70px 0;
  text-align: center;
  overflow: hidden;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}
.hero-slider .owl-nav button {
  background: rgba(0, 123, 255, 0.7);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  pointer-events: auto;
  transition: background 0.2s;
  outline: none;
  box-shadow: none;
}
.hero-slider .owl-nav button:focus,
.hero-slider .owl-nav button:active {
  outline: none;
  box-shadow: none;
}
.hero-slider .owl-nav button,
.hero-slider .owl-nav button:focus,
.hero-slider .owl-nav button:active,
.hero-slider .owl-nav button:visited {
  outline: none !important;
  box-shadow: none !important;
}
.hero-slider .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  transition: background 0.2s;
}
.hero-slider .owl-dot.active span {
  background: #007bff;
}
.hero-slide-bg {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: background-image 0.5s;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 123, 255, 0.05);
  z-index: 2;
  border-radius: 2rem;
}
.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInDown 1.1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.hero-content h1 .about {
  /* color: rgb(163, 162, 162); */
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.3s;
}

.hero-btn {
  background: #f9fafc;
  color: #344966;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 123, 255, 0.12);
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #344966;
  color: #f9fafc;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(52, 73, 102, 0.1);
  padding: 2rem 1.5rem;
  max-width: 500px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.12);
}
.product-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0, 123, 255, 0.08);
}
.product-card h2 {
  font-size: 1.3rem;
  color: #344966;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-card .product-meta {
  font-size: 0.98rem;
  color: #4f5d75;
  margin-bottom: 1rem;
}
.product-card .product-content {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
}
.product-card .product-benefits {
  margin: 1rem 0 0.5rem 0;
  padding-left: 1.2rem;
}
.product-card .product-benefits li {
  margin-bottom: 0.5rem;
}
.product-content {
  color: #4f5d75;
}
@media (max-width: 991px) {
  .product-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-card {
    max-width: 98vw;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
.section-title {
  color: #f9fafc;
  text-shadow: 0 2px 12px rgba(52, 73, 102, 0.18);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  animation: fadeInDown 1.1s;
}

/* Section Spacing Utility */
.section-gap {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Company Intro Section */
.company-intro {
  background: #f9fafc;
  color: #344966;
  border-radius: 2rem;
  box-shadow: 0 2px 18px rgba(52, 73, 102, 0.08);
  padding: 3rem 2rem;
  text-align: center;
  min-width: 300px;
  max-width: 90vw;
  margin: 30px auto;
}
.company-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #344966;
}
.company-intro .mission,
.company-intro .vision {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: #222;
}
.company-intro .mission-title,
.company-intro .vision-title {
  font-weight: 600;
  color: #007bff;
  margin-bottom: 0.5rem;
  display: block;
}

/* Product Slider Navigation Bar */
.product-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.product-nav-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #bfcbe6;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(52, 73, 102, 0.08);
  border: 2px solid #344966;
}
.product-nav-dot.active {
  background: #344966;
  transform: scale(1.2);
  border-color: #007bff;
}
.product-nav-dot:hover {
  background: #007bff;
  transform: scale(1.1);
}

/* Revapain MR Banner Styles */
.revapain-banner {
  background: #fff;
  border-radius: 1.5rem;

  padding: 2rem;
  color: #344966;
  font-size: 1.15rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.revapain-banner:hover {
  box-shadow: 0 8px 32px rgba(52, 73, 102, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.revapain-title {
  color: #007bff;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.revapain-banner:hover .revapain-title {
  color: #344966;
}
.revapain-desc {
  margin-bottom: 0;
  transition: color 0.3s;
}
.revapain-banner:hover .revapain-desc {
  color: #007bff;
}

/* Stretch Banner Image to Container */
.stretch-banner {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 2rem;
  background: none;
  display: block;
}
@media (max-width: 991px) {
  .stretch-banner {
    border-radius: 1rem;
  }
}

/* Logo Line Animation */
.logo__link {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.Athel {
  color: #541419 !important;
}
.logo__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff 0%, #51eaea 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo__link:hover:after {
  width: 100%;
}

/* Sidebar Animation */
.sidebar {
  outline: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  transform: translateX(100%);
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 320px;
  background: #232946;
  z-index: 3000;
  box-shadow: 0 16px 48px rgba(52, 73, 102, 0.22);
}
.sidebar[hidden] {
  display: block !important;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
}
.sidebar.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 24px 64px rgba(52, 73, 102, 0.28);
}
.sidebar__close {
  font-size: 2rem;
  color: #fff !important;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.75rem;
  outline: none;
  transition: color 0.3s;
}
.sidebar__close:hover {
  outline: none;
  color: #51eaea !important;
}
.sidebar__nav {
  animation: fadeInSidebar 0.7s;
}
.sidebar__item a,
.sidebar__nav a {
  color: #fff !important;
  /* font-size: 5.1rem; */
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.sidebar__item a:hover,
.sidebar__nav a:hover {
  color: #51eaea !important;
}
.benefit-animate,
.lead1 {
  color: #737b8a;
}

.block-38 {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s,
    border-color 0.3s;
  border: 2px solid #e3e3e3;
}
.block-38:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
    0 1.5px 8px rgba(0, 123, 255, 0.08);
  border-color: #00bcd4;
  background: #f8faff;
}

.logo__sub1 {
  color: #4aa1a8;
}

.Athel {
  color: #143954 !important;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-left: 0.5rem;
}
.value-item {
  background: #f4f8fc;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.04);
  font-size: 1.07rem;
  color: #143954;
  /* display: flex;
  align-items: baseline; */
}
.value-title {
  font-weight: 700;
  color: #007bff;
  font-size: 1.25rem;
  display: inline-block;
}
.value-desc {
  color: #344966;
  margin-left: 0.2rem;
}
@media (max-width: 600px) {
  .values-list {
    gap: 0.5rem;
  }
  .value-item {
    font-size: 0.98rem;
    padding: 0.6rem 0.7rem;
  }
}
