/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
/* google fonts start */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
/* google fonts end */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

:root {
  /* colors */
  --text-primary: #171a20;
  --text-secondary: rgba(0, 0, 0, 0.5);
  --base-transition: 0.4s all ease;

  /* font family */
  --font-primary: "Red Hat Display", sans-serif;
  --font-secondary: "Plus Jakarta Sans", sans-serif;

  /* font weight */
  --font--medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* all text sizes */
  --text--base: 16px;
  --text-lg: 18px;
  --text--xl: 20px;
  --text-2xl: 24px;
  --text-4xl: 32px;
  --text-6xl: 48px;
  --text-9xl: 90px;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font--primary);
  background-color: var(--white);
}

main {
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

/* ============================== Global style ================================ */
/* Note: navbar sidebar start */
.common-side--bar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  z-index: 1000;
  transition: right 0.4s ease;
  background: rgba(0, 0, 0, 0.527);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.common-side--bar.active {
  right: 0;
}
.open--sidebar {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text-primary);
}
.main_wrapper.blurred .bg_overly {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background-color: #0000009a;
  backdrop-filter: blur(32px);
  z-index: 100;
}

.close---btn--sidebar {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: var(--text--xl);
  color: #fff;
}
.sidebar_nav_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  font-family: var(--font-secondary);
}
.sidebar_nav_items a {
  font-size: var(--text-lg);
  color: #fff;
  font-weight: var(--font-medium);
  transition: var(--base-transition);
}
.sidebar_nav_items a.active {
  color: #a6905d;
  font-weight: bold;
}
/* Note: navbar sidebar end */

.common_section_title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.common_section_title h2 {
  color: var(--text-primary);
  font-size: var(--text-6xl);
  font-weight: var(--font-semi-bold);
  font-family: var(--font-secondary);
}
.common_section_title p {
  color: #6f7479;
  font-size: var(--text-2xl);
  font-family: var(--font-secondary);
}

/* Note: font awesome about page OUR SECTION ICON COLOR */
.icon_color {
  color: var(--text-primary);
  margin-top: 8px;
}
/* ============================== Header start ======================================== */

.fr-header-section {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

/* When scrolled */
.fr-header-section.scrolled {
  backdrop-filter: blur(10px);
  background-color: rgba(235, 231, 228, 0.6); /* optional */
}
.fr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-primary);
}

.fr-logo {
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fr-logo img {
  width: 250px;
  height: 40px;
}

.fr-logo-text strong {
  font-size: 14px;
  color: #000;
}

.fr-logo-text span {
  font-size: 12px;
  color: #666;
}

.fr-nav {
  display: flex;
  gap: 42px;
}

.fr-nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 500;
  font-family: var(--font-primary);
}

.fr-nav a:hover {
  color: #a6905d;
}

.fr-nav a.active {
  color: #a6905d;
  font-weight: bold;
}

.fr-nav .highlighted {
  color: #a6905d;
}

.fr-contact-button a {
  background-color: #a6905d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.fr-contact-button a:hover {
  background-color: #a6905d;
}

/* ============================== Header end ======================================== */

/* ============================== Footer  start ======================================== */
footer {
  background-color: #a1865b; /* background color from screenshot */
  color: white;
}

.fr-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Logo & Social Section */
.fr-footer-logo {
  flex: 1;
  gap: 28px;
  padding-right: 100px;
}

.fr-footer-logo img {
  max-width: 150px;
}

.fr-social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.fr-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 100%;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.fr-social-icons a:hover {
  background: white;
  color: #a1865b;
}

/* Links Section */
.fr-footer-links,
.fr-footer-company,
.fr-footer-contact {
  flex: 1;
  min-width: 180px;
}

.fr-footer-links h4,
.fr-footer-company h4,
.fr-footer-contact h4 {
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 24px;
  font-family: var(--font-secondary);
}

.fr-footer-links ul,
.fr-footer-company ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fr-footer-links ul li,
.fr-footer-company ul li {
  margin-bottom: 8px;
}

.fr-footer-links ul li a,
.fr-footer-company ul li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #ffffff;
  text-decoration: none;
  padding-top: 2px;
  padding-bottom: 2px;
}

.fr-footer-links ul li a:hover,
.fr-footer-company ul li a:hover {
  text-decoration: underline;
}

/* Contact Section */
.fr-footer-contact p {
  font-size: 16px;
  font-weight: 300;
  font-family: var(--font-secondary);
  color: #ffffff;
  margin: 5px 0;
  padding-top: 2px;
  padding-bottom: 2px;
}

/* Bottom Copyright */
.fr-footer-bottom {
  font-family: var(--font-secondary);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
}
/* ============================== Footer end ======================================== */

/* ============================== Global style  End ================================ */

/* laptop devices */
@media only screen and (min-width: 1201px) and (max-width: 1365px) {
}

/* large tablet devices */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  /* note: Zh header section start */
  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 210px;
  }

  .fr-nav {
    gap: 24px;
  }
  .fr-contact-button a {
    padding: 8px 16px;
    font-size: 18px;
  }
}
/* medium tablet devices */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* Note: Zh header start */
  .open--sidebar {
    display: block;
    font-size: 20px;
  }
  .nav_list_hidden {
    display: none;
  }

  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 200px;
  }
}

/* small tablet devices */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* Note: Zh header start */
  .open--sidebar {
    display: block;
  }
  .nav_list_hidden {
    display: none;
  }
  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 186px;
  }
}
/* large mobile devices */
@media only screen and (min-width: 480px) and (max-width: 575px) {
  .open--sidebar {
    display: block;
  }
  /* Note: Zh header start */
  .nav_list_hidden {
    display: none;
  }
  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 186px;
  }
}
/* mobile devices */
@media only screen and (min-width: 375px) and (max-width: 479px) {
  .open--sidebar {
    display: block;
  }
  /* Note: Zh header start */
  .nav_list_hidden {
    display: none;
  }
  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 160px;
  }
}
/* extra small devices */
@media only screen and (min-width: 320px) and (max-width: 374px) {
  .open--sidebar {
    display: block;
  }
  /* Note: ZH header start */
  .nav_list_hidden {
    display: none;
  }

  .fr-header {
    padding: 16px 0;
  }

  .fr-logo {
    max-width: 145px;
  }
  /* Note: ZH header end */
}
