:root {
  --bs-primary: #222f7d;
  --bs-primaryLight: #515faf;
  --bs-secondary: #8d8d8d;
  --bs-secondaryLight: #898989;
  --bs-secondaryDark: #f6f6f6;
}

[data-theme=dark] {
  --bs-primary: #6a7def;
  --bs-secondary: #c0c0c0;
  --bs-secondaryLight: #9e9e9e;
  --bs-secondaryDark: #252525;
}

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

body {
  font-family: "Poppins", sans-serif;
}

.font-rahdhani {
  font-family: "Rajdhani", sans-serif;
}

.z-1 {
  z-index: 1;
}

.common-padding {
  padding: 70px 0;
}
@media (max-width: 374px) {
  .common-padding {
    padding: 50px 0;
  }
}

.sec-gray {
  background-color: var(--bs-secondary);
}

.font-ubuntu {
  font-family: "Ubuntu", sans-serif;
}

.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.btn {
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  font-size: 15px;
  padding: 12px 32px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  border-radius: 6px;
  letter-spacing: 3.2px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  border-radius: 30px;
  color: #fff;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--bs-primary);
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.z-1 {
  z-index: 1;
}

.rounded-lg {
  border-radius: 12px;
}

.h-subtitle {
  font-size: 13px;
  letter-spacing: 0.42rem;
  text-transform: uppercase;
  opacity: 0.6;
}
.h-subtitle span {
  margin-right: 14px;
  width: 34px;
  height: 1px;
  display: inline-block;
}

.f-shrink {
  flex-shrink: 0;
}

.f-grow {
  flex-grow: 1;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.btn-white {
  color: var(--bs-primary);
}
.btn-white::before, .btn-white::after {
  background-color: #fff;
}
.btn-white:hover {
  color: #fff;
  border-color: #fff;
}

a {
  color: var(--bs-secondary);
  text-decoration: none;
}

.nav-active {
  color: var(--bs-primary) !important;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 374px) {
  .section-title {
    font-size: 27px;
  }
}

.section-subtitle {
  opacity: 60%;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle {
  opacity: 0.6;
}

.main-header {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 9;
}
.main-header .header {
  background-color: var(--bs-secondaryDark);
  margin: 0 100px;
}
@media (max-width: 1440px) {
  .main-header .header {
    margin: 0 70px;
  }
}
@media (max-width: 1024px) {
  .main-header .header {
    margin: 0 48px;
  }
}
@media (max-width: 768px) {
  .main-header .header {
    margin: 0 30px;
  }
}
@media (max-width: 557px) {
  .main-header .header {
    margin: 0 12px;
  }
}
.main-header .header {
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
}
.main-header .header .header-logo img {
  max-width: 140px;
}
@media (max-width: 768px) {
  .main-header .header .header-logo img {
    max-width: 110px;
  }
}

.header-shadow {
  top: 16px;
  position: fixed;
  transition: all 0.5s ease-in-out;
}
.header-shadow .header {
  background-color: var(--bs-secondaryDark);
  margin: 0 40px;
}
@media (max-width: 1200px) {
  .header-shadow .header {
    margin: 0 60px;
  }
}
@media (max-width: 1024px) {
  .header-shadow .header {
    margin: 0 20px;
  }
}
.header-shadow .header {
  transition: all 0.5s ease-in-out;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding: 0 16px;
}
@media (max-width: 767px) {
  .header-nav li {
    padding: 0 0 14px 0;
  }
}
.header-nav li a {
  font-weight: 500;
  text-decoration: none;
  color: var(--bs-secondary);
  position: relative;
  font-size: 16px;
}
@media (max-width: 767px) {
  .header-nav li a {
    font-size: 15px;
  }
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--bs-primary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover {
  color: var(--bs-primary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Rajdhani", sans-serif;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 374px) {
  h2 {
    font-size: 30px;
  }
}

.header-open {
  display: block !important;
  transition: all 0.5s ease-in-out !important;
  left: 0 !important;
}

.res-header {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  color: #002253;
  transition: all 0.5s ease-in-out;
}

.product-section h6 {
  font-size: 24px;
  margin-bottom: 20px;
}

.header-nav a.nav-active {
  color: var(--bs-primary) !important;
  font-weight: 500;
  position: relative;
}

.header-nav a.nav-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bs-primary) !important;
}

footer {
  background-color: var(--bs-secondaryDark);
}
footer .info-item a {
  text-decoration: none;
}
footer .footer-nav .footer-title {
  font-size: 20px;
  font-weight: 500;
}
footer .footer-nav ul {
  list-style: none;
  padding-left: 0;
}
footer .footer-nav ul li {
  margin-bottom: 6px;
}
footer .footer-nav ul li a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
}
footer .footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--bs-primary);
  transition: all 0.5s ease-in-out;
}
footer .footer-nav ul li a:hover {
  color: var(--bs-primary);
  transition: all 0.5s ease-in-out;
}
footer .footer-nav ul li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--bs-primary);
  background-color: var(--bs-primary);
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.5s ease-in-out;
}
footer .social-links a:hover {
  transition: 0.5s ease-in-out;
  margin-top: -4px;
}
footer .footer-copy {
  border-top: 1px solid #dfdfdf;
  font-size: 14px;
}/*# sourceMappingURL=comman.css.map */