/*
Theme Name: HIA
Author: HIA Team
Version: 1.0
Text Domain: hia
Description: A clean OOP-based custom WordPress theme.
*/

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font-main);
  overflow-x: hidden;
  color: var(--text-color);
  font-size: var(--fs-p);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.3;
  font-weight: 600;
  margin-top: 0;
  color: var(--primary-color);
}

p.para_text {
  font-size: var(--fs-p);
  line-height: 1.5;
  font-weight: 400;
}

.know_more_btn {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  border-radius: 15px;
  padding: 10px 25px;
  background-color: #0b5a6b;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.know_more_btn:hover {
  background-color: #000000;
}

.tab-panel p {
  text-align: center;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader img {
  max-width: 329px;
  width: min(73vw, 272px);
  height: auto;
}

body.page-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
