@font-face {
  font-family: 'Agrandir';
  src: url('/fonts/Agrandir-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Agrandir';
  src: url('/fonts/AgrandirText-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Agrandir';
  src: url('/fonts/Agrandir-GrandHeavy.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Figtree';
  src: url('/fonts/Figtree-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}
:root {
  color-scheme: only light;
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: only light;
  }
  html,
  body {
    background-color: #ffffff !important;
    color: #191919 !important;
  }
  input,
  textarea,
  select,
  button {
    color-scheme: light;
  }
}
html {
  scroll-behavior: smooth;
}
html,
body {
  background-color: #ffffff;
  color: #191919;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Figtree', 'Roboto', sans-serif;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
.main-header {
  border-bottom: none;
  box-shadow: none;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}
.main-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .main-header__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-header .logo-container {
  display: flex;
  align-items: center;
}
.main-header .logo-container a {
  display: flex;
  align-items: center;
}
.main-header .logo-container img {
  height: 35px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .desktop-nav {
  display: flex;
  gap: 40px;
}
.main-header .desktop-nav a {
  text-decoration: none;
  color: #333;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}
.main-header .desktop-nav a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 59.3125px;
  height: 3px;
  background-color: #CD0000;
}
.main-header .header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-header .header-actions .btn {
  width: 140px;
  height: 40px;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.main-header .header-actions .btn.btn-login {
  background-color: #191919;
  color: #fff;
  border: 1px solid #191919;
}
.main-header .header-actions .btn.btn-login:hover {
  background-color: #374151;
  border-color: #374151;
}
.main-header .header-actions .btn.btn-whatsapp {
  background-color: #fff;
  color: #191919;
  border: 1px solid #191919;
}
.main-header .header-actions .btn.btn-whatsapp:hover {
  background-color: #f3f4f6;
}
.main-header .header-actions .btn.btn-whatsapp i {
  font-size: 16px;
}
.main-header .mobile-toggle {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.main-header .mobile-toggle img {
  height: 24px;
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .mobile-toggle img.close-icon {
  display: none;
}
.main-header .mobile-toggle.active img.dehaze-icon {
  display: none;
}
.main-header .mobile-toggle.active img.close-icon {
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 30px 5% 50px;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 60px);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
  -webkit-animation: slideDown 0.3s ease forwards;
          animation: slideDown 0.3s ease forwards;
}
.mobile-menu .mobile-menu-title {
  font-family: 'Agrandir', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}
.mobile-menu .mobile-nav a {
  text-decoration: none;
  color: #333;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
  max-width: 280px;
}
.mobile-menu .mobile-actions .btn {
  width: 140px;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-actions .btn.btn-login {
  background-color: #191919;
  color: #fff;
}
.mobile-menu .mobile-actions .btn.btn-login:hover {
  background-color: #374151;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp {
  background-color: #fff;
  color: #191919;
  border: 1px solid #191919;
  gap: 8px;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp i {
  font-size: 16px;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp:hover {
  background-color: #f3f4f6;
}
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-footer {
  padding: 30px 0 40px;
  background-color: #fff;
}
.main-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .main-footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .main-footer__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .main-footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.main-footer .footer-top .footer-logo img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer-top .footer-nav {
  display: flex;
  gap: 32px;
}
.main-footer .footer-top .footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.main-footer hr {
  border: none;
  border-top: 1px solid #ADADAD;
  margin-bottom: 30px;
}
.main-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .footer-bottom .copyright {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #191919;
  font-weight: 500;
}
.main-footer .footer-bottom .social-links {
  display: flex;
  gap: 30px;
}
.main-footer .footer-bottom .social-links a {
  color: #9ca3af;
  font-size: 20px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.main-footer .footer-bottom .social-links .social-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-socials {
  display: none;
}
@media (max-width: 1280px) {
  .main-header .desktop-nav {
    gap: 20px;
  }
}
@media (max-width: 1077px) {
  .main-header {
    height: 60px;
  }
  .main-header .logo-container img {
    height: 27px;
  }
  .main-header .desktop-nav,
  .main-header .header-actions {
    display: none;
  }
  .main-header .mobile-toggle {
    display: block;
  }
  .desktop-socials {
    display: none !important;
  }
  .main-footer {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .main-footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-footer .footer-top {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
  }
  .main-footer .footer-top .footer-nav {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    grid-auto-flow: column;
    gap: 20px 60px;
    width: auto;
  }
  .main-footer .footer-top .footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #191919;
  }
  .main-footer .footer-top .mobile-socials {
    display: flex;
    gap: 20px;
  }
  .main-footer .footer-top .mobile-socials a {
    display: flex;
    align-items: center;
  }
  .main-footer .footer-top .mobile-socials .social-icon {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .main-footer hr {
    margin-top: 24px;
    margin-bottom: 18px;
    border-top: 1px solid #ADADAD;
  }
  .main-footer .footer-bottom {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    text-align: left;
  }
  .main-footer .footer-bottom .copyright {
    font-size: 12px;
    color: #191919;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .main-header .logo-container img {
    height: 27px;
  }
  .main-footer .footer-top .footer-logo img {
    height: 27px;
  }
  .mobile-menu .mobile-actions .btn,
  .main-header .header-actions .btn {
    width: 140px !important;
  }
  .swal2-popup {
    padding: 20px !important;
    width: calc(100% - 40px) !important;
    max-width: calc(100vw - 40px) !important;
    box-sizing: border-box !important;
  }
}
.swal2-popup {
  font-family: 'Figtree', 'Roboto', sans-serif !important;
  border-radius: 20px !important;
}
.swal2-popup .swal2-title {
  font-family: 'Agrandir', sans-serif !important;
  font-weight: 800 !important;
  color: #191919 !important;
}
.swal2-popup .swal2-html-container {
  font-family: 'Figtree', sans-serif !important;
  color: #191919 !important;
}
.swal2-popup .swal2-confirm {
  font-family: 'Figtree', sans-serif !important;
  background-color: #CD0000 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}
.swal2-popup .swal2-cancel {
  font-family: 'Figtree', sans-serif !important;
  background-color: #CD0000 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}
@media (min-width: 1078px) {
  .swal2-popup .swal2-confirm,
  .swal2-popup .swal2-cancel {
    width: 140px !important;
  }
}

