@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Sarabun", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --heading-font: "Alegreya Sans", sans-serif;
  --nav-font: "Source Sans Pro", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #FFFFFF; /* Background color for the entire website, including individual sections */
  --default-color: #111111; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #941319; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #941319; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #FFFFFF; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #FFFFFF; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #111111; /* The default color of the main navmenu links */
  --nav-hover-color: #941319; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #FFFFFF; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #FFFFFF; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #111111; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #941319; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #EFEEE5;
  --surface-color: #FFFFFF;
}

.dark-background {
  --background-color: #060606;
  --default-color: #FFFFFF;
  --heading-color: #FFFFFF;
  --surface-color: #252525;
  --contrast-color: #FFFFFF;
}

.dark-background-charcoal {
  --background-color: #303030;
}

.accent-background {
  --background-color: #efeee5;
  --default-color: #FFFFFF;
  --heading-color: #FFFFFF;
  --accent-color: #FFFFFF;
  --surface-color: #469fdf;
  --contrast-color: #FFFFFF;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1 {
  font-family: var(--heading-font);
}

h2 {
  color: var(--heading-color);
}

h3 {
  color: var(--heading-color);
}

h4 {
  color: var(--heading-color);
}

h5 {
  color: var(--heading-color);
}

h6 {
  color: var(--heading-color);
}

/* Pulsating Play Button
------------------------------*/
/* PHP Email Form Messages
------------------------------*/
.php-email-form .contact-error {
  transition: opacity 0.3s linear;
  transition-delay: 0.1s;
  color: #311;
}
.php-email-form .contact-error .alert-icon {
  color: #911;
}
.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: email-form-loading 1s linear infinite;
}

@keyframes email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.alert-icon {
  position: relative;
  top: 1px;
  width: 1em;
  height: 1em;
  fill: currentcolor;
}

.button-general:hover {
  transform: scale(1.06);
}

/*--------------------------------------------------------------
# site Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.45s;
  z-index: 997;
  background-color: var(--background-color);
}
.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.45s;
  background-color: #333333;
}
.header .topbar .contact-info i, .header .topbar .contact-info a {
  color: var(--contrast-color);
}
@media (max-width: 575px) {
  .header .topbar .contact-info i, .header .topbar .contact-info a {
    font-size: 13px;
  }
}
.header .branding {
  min-height: 60px;
  padding: 8px 0 10px 0;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-width: 36px;
  max-height: 36px;
  margin-right: 9px;
}
.header .brandingName {
  position: relative;
  top: 1px;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}
.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header .brandingName {
    margin: 0;
    font-size: 24px;
  }
  .header .logo .brandingLogo {
    max-height: 30px;
    max-width: 30px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# site Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgb(213.7428571429, 211.1642857143, 187.9571428571);
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-branding .logo {
  margin-bottom: 0.5rem;
}
.footer .footer-branding .logo img {
  position: relative;
  top: -6px;
  width: 84px;
}
.footer .footer-branding .company {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: normal;
}
.footer .footer-branding p {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 1.5rem;
  transition: 0.2s;
}
.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.footer .social-links i {
  width: unset;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
.footer .footer-links {
  margin-bottom: 33px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  margin-bottom: 5px;
  padding: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .copyright {
  padding-top: 24px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: small;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .copyright .footdot {
  margin: 0 5px;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
  color: rgb(17.0000085, 17.0000085, 17.0000085);
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}
/*--------------------------------------------------------------
# global section titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Top Section
--------------------------------------------------------------*/
.hero-top {
  padding: 70px 0 50px 0;
  min-height: 99vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-top .video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-top .video-background {
  z-index: 1;
}
.hero-top .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-top .video-overlay {
  z-index: 2;
  background-color: rgba(6, 6, 6, 0.69);
}
.hero-top .hero-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.hero-top .hero-more {
  min-height: 7rem;
}
.hero-top .brandingLogo {
  max-width: 170px;
}
@media (max-width: 768px) {
  .hero-top .brandingLogo {
    max-width: 101px;
  }
}
.hero-top h1 {
  font-size: 5.7rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .hero-top h1 {
    font-size: 3.3rem;
  }
}
@media (max-width: 576px) {
  .hero-top h1 {
    font-size: 2.3rem;
  }
}
.hero-top p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-top p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.hero-top .hero-content .btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.hero-top .hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5rem;
}
.hero-top .hero-buttons .btn {
  transition: all 0.3s ease;
}
.hero-top .hero-buttons .btn.btn-primary {
  background-color: #941319;
  color: var(--contrast-color);
  border: 0;
}
.hero-top .hero-buttons .btn.btn-primary:hover {
  background-color: rgb(165.427260479, 6.672739521, 14.0566707283);
}
.hero-top .hero-buttons .btn.btn-primary:active {
  background-color: rgb(135.0404790419, 21.7595209581, 27.0284027294);
  box-shadow: inset 0px 0px 3px 1px rgb(184.7058233533, 17.9941766467, 25.7482067261);
}
.hero-top .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.hero-top .hero-buttons .btn.btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: scale(1.06);
}
@media (max-width: 576px) {
  .hero-top .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 992px) {
  .hero-top {
    padding: 80px 0;
    min-height: 80vh;
  }
  .hero-top .hero-content {
    min-height: 80vh;
  }
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
.info {
  background-color: #E69138;
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 60px 0 60px 0;
  overflow: hidden;
}
.info img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info .container {
  position: relative;
}
.info h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
}
.info p {
  margin: 10px 0 0 0;
  font-size: 22px;
}
@media (max-width: 992px) {
  .info h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .info p {
    font-size: 18px;
    line-height: 24px;
  }
}
.info .btn-get-started {
  color: var(--contrast-color);
  background-color: #941319;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
}
.info .btn-get-started:hover {
  background-color: rgb(165.427260479, 6.672739521, 14.0566707283);
}
.info .btn-get-started:active {
  background-color: rgb(135.0404790419, 21.7595209581, 27.0284027294);
  box-shadow: inset 0px 0px 3px 1px rgb(184.7058233533, 17.9941766467, 25.7482067261);
}
.info .icon-box {
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.info .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.info .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}
.info .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: rgb(68.0000085, 68.0000085, 68.0000085);
}
.info .icon-box .icon {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-color);
}
.info .icon-box .icon .fa-stack-2x {
  opacity: 0.75;
}
.info .icon-box .icon .icon-do-not {
  color: #FF0000;
}
@media (min-width: 640px) {
  .info .icon-box:hover {
    transform: scale(1.05);
  }
  .info .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Why Section
--------------------------------------------------------------*/
.why .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}
.why .content ul {
  list-style: none;
  padding: 0;
}
.why .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}
.why .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}
.why .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 70px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}
.call-to-action p {
  color: var(--default-color);
}

.cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin: 10px;
  padding: 12px 40px;
  border-radius: 10px;
  transition: 0.4s;
  color: var(--contrast-color);
  background-color: #CA9822;
}
.cta-btn:hover {
  background-color: rgb(224.4477542373, 162.6038529056, 16.6522457627);
  color: inherit;
}
.cta-btn:hover a:hover {
  color: inherit;
}
.cta-btn:active {
  background-color: rgb(187.6244915254, 143.1456275222, 38.1755084746);
  box-shadow: inset 0px 0px 3px 1px rgb(226.6261440678, 172.5927249798, 45.0738559322);
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .step-item {
  text-align: center;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}
.process .step-item::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  z-index: 0;
}
.process .step-item:last-child::after {
  display: none;
}
.process .step-circle {
  width: 70px;
  height: 70px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.process .step-circle span {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}
.process .step-item:hover .step-circle {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}
.process .step-item:hover .step-circle span {
  color: var(--contrast-color);
}
.process h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}
.process p {
  color: rgb(17.0000085, 17.0000085, 17.0000085);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .process .step-item::after {
    display: none;
  }
  .process .step-circle {
    width: 60px;
    height: 60px;
  }
  .process .step-circle span {
    font-size: 1.3rem;
  }
  .process h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .process .step-circle {
    width: 50px;
    height: 50px;
  }
  .process .step-circle span {
    font-size: 1.1rem;
  }
  .process h3 {
    font-size: 1.1rem;
  }
  .process p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.rotate10 {
  rotate: 10deg;
}

.rotate20 {
  rotate: 20deg;
}

.rotate40 {
  rotate: 40deg;
}

.rotate50 {
  rotate: 50deg;
}

.rotate70 {
  rotate: 70deg;
}

.rotate80 {
  rotate: 80deg;
}

.rotate90 {
  rotate: 90deg;
}

.rotate110 {
  rotate: 110deg;
}

.rotateNEG10 {
  rotate: -10deg;
}

.rotateNEG20 {
  rotate: -20deg;
}

.rotateNEG30 {
  rotate: -30deg;
}

.rotateNEG40 {
  rotate: -40deg;
}

.rotateNEG50 {
  rotate: -50deg;
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 45px 35px 55px 35px;
  text-align: center;
  border-radius: 5px;
}
.services .service-item .service-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 169px;
  height: 169px;
  transform-origin: center;
  transition: 0.4s;
  color: #F5F4F3;
}
.services .service-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 169px;
  height: 169px;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .service-item .icon i {
  transition: 0.4s;
}
.services .service-item .icon i:not(.fa-stack-1x) {
  position: relative;
}
.services .service-item .icon i.fa-house.house-inherit {
  top: 8px;
}
.services .service-item .icon #icon-vacancy {
  position: relative;
  width: 4.6rem;
  transition: 0.4s;
}
.services .service-item .icon #icon-double-mortgage i {
  font-size: 123%;
}
.services .service-item .icon #icon-double-mortgage i.house-1 {
  left: -18px;
}
.services .service-item .icon #icon-double-mortgage i.house-2 {
  left: 29px;
}
.services .service-item .icon svg {
  color: #F5F4F3;
}
.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}
.services .service-item.item-colored:hover .icon i,
.services .service-item.item-colored:hover .icon .service-icon {
  color: #FFF;
}
.services .service-item.item-color-a i,
.services .service-item.item-color-a .service-icon {
  color: #0DA8f0;
}
.services .service-item.item-color-a:hover .icon .service-blob {
  color: #0DA8f0;
}
.services .service-item.item-color-b i,
.services .service-item.item-color-b .service-icon {
  color: #fd7e14;
}
.services .service-item.item-color-b:hover .icon .service-blob {
  color: #fd7e14;
}
.services .service-item.item-color-c i,
.services .service-item.item-color-c .service-icon {
  color: #20c964;
}
.services .service-item.item-color-c:hover .icon .service-blob {
  color: #20c964;
}
.services .service-item.item-color-d i,
.services .service-item.item-color-d .service-icon {
  color: #df1529;
}
.services .service-item.item-color-d:hover .icon .service-blob {
  color: #df1529;
}
.services .service-item.item-color-e i,
.services .service-item.item-color-e .service-icon {
  color: #6610f2;
}
.services .service-item.item-color-e:hover .icon .service-blob {
  color: #6610f2;
}
.services .service-item.item-color-f i,
.services .service-item.item-color-f .service-icon {
  color: #e2248d;
}
.services .service-item.item-color-f:hover .icon .service-blob {
  color: #e2248d;
}
.services .service-item.item-color-g i,
.services .service-item.item-color-g .service-icon {
  color: #13c17b;
}
.services .service-item.item-color-g:hover .icon .service-blob {
  color: #13c17b;
}
.services .service-item.item-color-h i,
.services .service-item.item-color-h .service-icon {
  color: #e1bb12;
}
.services .service-item.item-color-h:hover .icon .service-blob {
  color: #e1bb12;
}
.services .service-item.item-color-i i,
.services .service-item.item-color-i .service-icon {
  color: #234df4;
}
.services .service-item.item-color-i:hover .icon .service-blob {
  color: #234df4;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*---------------------------------------------------------
# Faq Section
---------------------------------------------------------*/
/*
.faq {
    .faq-container {
        .faq-item {
            background-color: var(--surface-color);
            position: relative;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-radius: $faq-border-radius;
            overflow: hidden;

            &:last-child {
                margin-bottom: 0;
            }

            h3 {
                font-weight: 600;
                font-size: 18px;
                line-height: 24px;
                margin: 0 30px 0 0;
                // transition: 0.3s;
                transition-duration: 0.3s;
                cursor: pointer;
                // display: flex;
                // align-items: center;

                .num {
                    color: var(--accent-color);
                    padding-right: 5px;
                }

                &:hover {
                    color: var(--accent-color);
                }
            }

            .faq-content {
                // display: grid;
                // grid-template-rows: 0fr;
                // transition: $faq-content-animation-timing ease-in-out;
                // visibility: hidden;
                // opacity: 0;s

                p {
                    margin-bottom: 0;
                    // overflow: hidden;
                }
            }

            .faq-toggle {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 18px;
                line-height: 0;
                // transition: 0.3s;
                transition-duration: 0.3s;
                cursor: pointer;

                transform: rotate(90deg);

                &:hover {
                    // color: var(--accent-color);
                }
            }
        }

        .faq-active {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);

            h3 {
                color: var(--contrast-color);
            }

            .faq-content {
                // grid-template-rows: 1fr;
                // visibility: visible;
                // opacity: 1;
                padding-top: 10px;
            }

            .faq-toggle {
                transform: rotate(-90deg);
                // color: var(--accent-color);
            }
        }
    }
}
*/
.faq .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}
.faq .accordion .accordion-item > div,
.faq .accordion .accordion-item button {
  border: 0;
  border-radius: 0;
  color: inherit;
  background-color: unset;
}
.faq .accordion .accordion-item:first-of-type {
  border-radius: 0;
}
.faq .accordion .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-radius: 0;
}
.faq .accordion .accordion-item:last-of-type {
  border-radius: inherit;
}
.faq .accordion .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
.faq .accordion .accordion-item:last-of-type > .accordion-collapse {
  border-radius: 0;
}
.faq .accordion .accordion-item {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  color: #FFF;
  margin-bottom: 15px;
}
.faq .accordion .accordion-item .accordion-button {
  font-weight: 600;
  font-size: 18px;
  margin: 0 40px 0 0;
  transition: 0.3s;
}
.faq .accordion .accordion-item .accordion-button:hover {
  color: #b02a15;
}
.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: unset;
}
.faq .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion .accordion-item.faq-shown {
  animation: faq-item-flash 0.7s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
.faq .accordion .accordion-body {
  color: #111;
}
.faq .accordion .accordion-body p {
  margin-bottom: 0;
}
.faq .accordion h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
}
.faq .accordion h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}
.faq .accordion h3:hover {
  color: var(--accent-color);
}

@keyframes faq-item-flash {
  0% {
    background-color: inherit;
  }
  7% {
    background-color: inherit;
  }
  33% {
    background-color: #fcdfcf;
  }
  100% {
    background-color: inherit;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}
.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Team Section
--------------------------------------------------------------*/
.about-team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.about-team .team-member .member-img {
  position: relative;
  overflow: hidden;
}
.about-team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.about-team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.about-team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}
.about-team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}
.about-team .team-member .member-info {
  padding: 25px 15px;
}
.about-team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}
.about-team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.about-team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# site values as Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  padding: 18px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgb(127.5, 127.5, 127.5);
  transition: all 0.2s ease-in-out;
  background-color: rgb(251.79, 243.07, 238.4);
}
.contact .info-card .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(228.25, 196, 197.5);
}
.contact .info-card .icon-container i {
  font-size: 30px;
  color: var(--accent-color);
}
.contact .info-card .icon-container .glyph-phone {
  --fa-animation-duration: 1.5s;
  --fa-animation-iteration-count: 1;
}
.contact .info-card .icon-container .glyph-email {
  --fa-animation-duration: 1.5s;
  --fa-animation-iteration-count: 1;
  --fa-animation-timing: ease;
}
.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}
.contact label {
  font-weight: 500;
  margin-bottom: 6px;
}
.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}
.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}
.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}
.contact .form-wrapper .input-group .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .form-wrapper .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .form-wrapper select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}
.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}
.contact .form-wrapper button[type=submit] {
  background-color: #941319;
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}
.contact .form-wrapper button[type=submit]:hover {
  background-color: rgb(165.427260479, 6.672739521, 14.0566707283);
}
.contact .form-wrapper button[type=submit]:active {
  background-color: rgb(135.0404790419, 21.7595209581, 27.0284027294);
  box-shadow: inset 0px 0px 3px 1px rgb(184.7058233533, 17.9941766467, 25.7482067261);
}
.contact .modal-success {
  --bs-success-bg-subtle: #D1E7D6;
}
.contact .modal-success .modal-header {
  background-color: var(--bs-success-bg-subtle);
  background-color: rgb(172.4607142857, 216.5392857143, 182.4785714286);
}
.contact .modal-success .modal-title {
  color: var(--bs-modal-color);
}
.contact .modal-success .modal-body {
  background-color: var(--bs-success-bg-subtle);
}
.contact .modal-success .modal-footer {
  border-top: 0;
  background-color: var(--bs-success-bg-subtle);
}

.required-marker {
  color: #ec1e02;
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}
.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy .privacy-header .header-content .update-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}
.privacy .privacy-header .header-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.privacy .privacy-header .header-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}
.privacy .privacy-header .header-content .privacy-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .privacy .privacy-header .header-content .privacy-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.privacy .privacy-header .header-content .privacy-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}
.privacy .privacy-header .header-content .privacy-badges .badge-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}
.privacy .privacy-header .header-content .privacy-badges .badge-item span {
  font-weight: 500;
}
.privacy .info-section {
  margin-bottom: 70px;
}
.privacy .info-section .section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .privacy .info-section .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .privacy .info-section .section-grid {
    grid-template-columns: 1fr;
  }
}
.privacy .info-section .info-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}
.privacy .info-section .info-card:hover {
  transform: translateY(-10px);
}
.privacy .info-section .info-card:hover .card-header i {
  transform: scale(1.1);
}
.privacy .info-section .info-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy .info-section .info-card .card-header i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s;
}
.privacy .info-section .info-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}
.privacy .info-section .info-card .card-content {
  padding: 30px;
}
.privacy .info-section .info-card .card-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.privacy .info-section .info-card .card-content .info-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.privacy .info-section .info-card .card-content .info-list li:last-child {
  margin-bottom: 0;
}
.privacy .info-section .info-card .card-content .info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.privacy .security-section {
  margin-bottom: 70px;
  text-align: center;
}
.privacy .security-section .section-header {
  margin-bottom: 40px;
}
.privacy .security-section .section-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.privacy .security-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}
.privacy .security-section .measures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: 1fr;
  }
}
.privacy .security-section .measure-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}
.privacy .security-section .measure-item:hover {
  transform: translateY(-5px);
}
.privacy .security-section .measure-item:hover i {
  color: var(--accent-color);
}
.privacy .security-section .measure-item i {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.privacy .security-section .measure-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.privacy .security-section .measure-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}
.privacy .rights-section {
  margin-bottom: 70px;
}
.privacy .rights-section .rights-content {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}
.privacy .rights-section .rights-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.privacy .rights-section .rights-content > p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
}
.privacy .rights-section .rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: 1fr;
  }
}
.privacy .rights-section .right-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.privacy .rights-section .right-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.privacy .rights-section .right-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}
.privacy .additional-info {
  margin-bottom: 70px;
}
.privacy .additional-info .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: 1fr;
  }
}
.privacy .additional-info .info-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
}
.privacy .additional-info .info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}
.privacy .additional-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.privacy .privacy-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .privacy .privacy-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}
.privacy .privacy-contact .contact-box .contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.privacy .privacy-contact .contact-box .contact-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}
.privacy .privacy-contact .contact-box .contact-content {
  flex: 1;
}
.privacy .privacy-contact .contact-box .contact-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.privacy .privacy-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}
.privacy .privacy-contact .contact-box .contact-content .contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.privacy .privacy-contact .contact-box .contact-content .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Privacy 2 Section
--------------------------------------------------------------*/
.privacy-2 {
  font-size: 1rem;
  line-height: 1.7;
}
.privacy-2 .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}
.privacy-2 .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-2 .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}
.privacy-2 .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy-2 .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.privacy-2 .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}
.privacy-2 .privacy-content .content-section {
  margin-bottom: 50px;
}
.privacy-2 .privacy-content .content-section:last-child {
  margin-bottom: 0;
}
.privacy-2 .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}
.privacy-2 .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}
.privacy-2 .privacy-content .content-section p {
  margin-bottom: 20px;
}
.privacy-2 .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}
.privacy-2 .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.privacy-2 .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.privacy-2 .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}
.privacy-2 .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}
.privacy-2 .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy-2 .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}
.privacy-2 .privacy-contact p {
  margin-bottom: 20px;
}
.privacy-2 .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}
.privacy-2 .privacy-contact .contact-details p {
  margin-bottom: 10px;
}
.privacy-2 .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}
.privacy-2 .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}
@media print {
  .privacy-2 {
    font-size: 12pt;
    line-height: 1.5;
  }
  .privacy-2 .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }
  .privacy-2 h1 {
    font-size: 24pt;
  }
  .privacy-2 h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  .privacy-2 h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  .privacy-2 p,
  .privacy-2 ul {
    page-break-inside: avoid;
  }
  .privacy-2 .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}
@media (max-width: 767px) {
  .privacy-2 .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .privacy-2 .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }
  .privacy-2 .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }
  .privacy-2 .privacy-content .content-section {
    margin-bottom: 40px;
  }
  .privacy-2 .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }
  .privacy-2 .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Privacy 3 Section
--------------------------------------------------------------*/
.privacy-3 .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}
.privacy-3 .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}
.privacy-3 .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}
.privacy-3 .privacy-content .privacy-section {
  margin-bottom: 50px;
}
.privacy-3 .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}
.privacy-3 .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}
.privacy-3 .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}
.privacy-3 .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}
.privacy-3 .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}
.privacy-3 .privacy-content .privacy-section ul,
.privacy-3 .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}
.privacy-3 .privacy-content .privacy-section ul li,
.privacy-3 .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}
.privacy-3 .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy-3 .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}
.privacy-3 .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}
.privacy-3 .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.privacy-3 .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}
.privacy-3 .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}
.privacy-3 .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}
.privacy-3 .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}
.privacy-3 .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.privacy-3 .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}
.privacy-3 .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}
.privacy-3 .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}
.privacy-3 .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}
.privacy-3 .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}
.privacy-3 .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}
.privacy-3 .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}
.privacy-3 .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}
.privacy-3 .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}
.privacy-3 .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}
.privacy-3 .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}
.privacy-3 .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}
.privacy-3 .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.privacy-3 .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}
.privacy-3 .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}
@media (max-width: 768px) {
  .privacy-3 .privacy-content {
    font-size: 15px;
  }
  .privacy-3 .privacy-content .privacy-section h3 {
    font-size: 24px;
  }
  .privacy-3 .privacy-content .privacy-section h4 {
    font-size: 20px;
  }
  .privacy-3 .privacy-content .privacy-section .security-measures .row > div {
    margin-bottom: 20px;
  }
  .privacy-3 .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }
  .privacy-3 .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-page .page-title h1 {
  font-size: 6rem;
}
.error-page .page-title {
  color: #333;
}

.error-content {
  padding: 60px 0;
  display: flex;
  align-items: center;
}
.error-content .error-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.error-content .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
}
.error-content .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 576px) {
  .error-content .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
.error-content .helpful-links {
  text-align: center;
}
.error-content .helpful-links h3 {
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 40px;
}
.error-content .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .error-content .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.error-content .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.error-content .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.error-content .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.error-content .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}
.error-content .helpful-links .link-item:hover i {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .error-content {
    padding: 80px 0;
  }
  .error-content .error-actions {
    margin-bottom: 60px;
  }
  .error-content .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .error-content .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=main.css.map */
