/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 30, 30, 30;
  --color-main-gray: 248, 242, 238;
  --color-brown: 107, 98, 90;
  --color-main: 207, 197, 187;
  --color-blue: 33, 45, 80;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #D8D8D8;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #D8D8D8;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Nunito Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 80px;
  line-height: 90px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.02em;
}

h5 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 21px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 24px;
  line-height: 30px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-main {
  color: rgba(var(--color-main));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-main-gray {
  color: rgba(var(--color-main-gray));
}

.color-brown {
  color: rgb(var(--color-brown));
}

.color-blue {
  color: rgba(var(--color-blue));
}

.bg-main-gray {
  background-color: rgb(var(--color-main-gray));
}

.bg-main {
  background-color: rgb(var(--color-main));
}


/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 4px;
  border: 1px solid #E7E7E7;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #EDEEED;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}


/* ========== Button ========== */

.btn {
  padding: 15px 30px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 0;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
  border: 0;
}

.btn-primary {
  background-color: rgb(var(--color-brown));
  border: 0;
}

.btn-primary:hover {
  background-color: #674730;
  border: 0;
}

.cta {
  position: relative;
  z-index: 10;
  transform: translateY(90px);
}

.btn-secondary {
  font-weight: 800;
  font-size: 17px;
  line-height: 23px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1E1E1E;
  border: 0;
  background-color: rgb(var(--color-main));
}

.btn-secondary:hover {
  background-color: #674730;
  border: 0;
}

.btn-blue {
  background-color: rgb(var(--color-blue));
  padding: 10px 30px;
}

.btn-blue:hover {
  background-color: rgb(var(--color-dark));
  padding: 10px 30px;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
  transition: all 150ms ease-in-out;
}

.header.smaller .header-inner {
  padding: 5px 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo {
  display: block;
  max-width: 70px;
}

.header.smaller .logo {
  display: block;
  max-width: 50px;
}

.main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}

.main-menu li a {
  font-weight: 400;
  font-size: 17px;
  line-height: 23px;
  color: rgb(var(--color-dark));
}

.main-menu li a:hover {
  color: #674730;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px
}

.lang {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.lang li {
  display: flex;
  align-items: center;
}

.lang li a {
  color: rgb(var(--color-brown));
}

.lang li a.active {
  font-weight: 800;
}

.lang li::after {
  content: '|';
  margin-left: 15px;
  font-size: 20px;
  font-weight: 300;
  color: #DFDFDF;
}

.lang li:last-child::after {
  display: none;
}


/* ========== Menu Mobile ========== */
.mobile-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show {
  left: 0;
}

.overlay-mobile {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay-mobile.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.menu-mobile {
  padding-left: 0;
}

/* ========== Content ========== */
.hero {
  background-size: cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89.97deg, #2C2C2C 28.54%, rgba(74, 74, 74, 0.18) 82.41%);
}

.bg-cta {
  background-color: rgb(var(--color-brown));
  border-radius: 10px;
  padding: 45px 80px;
  position: relative;
  overflow: hidden;
  background-image: url(../img/deco.svg);
  background-position: center -50px;
  background-repeat: no-repeat;
}

.coming-soon {
  height: 70vh;
  display: flex;
  align-items: center;
}

.img-black {
  filter: contrast(0) brightness(0);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CFC5BB;
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
}

.section-title::before {
  content: '';
  display: inline-flex;
  width: 40px;
  height: 3px;
  background-color: #CFC5BB;
}

.section-title.dark {
  color: rgb(var(--color-brown));
}

.section-title.dark::before {
  background-color: rgb(var(--color-brown));
}

.img-notary img {
  border-radius: 10px;
}

.box-years {
  position: absolute;
  width: 174px;
  height: 168px;
  bottom: 60px;
  left: -90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #F4F2EE;
  box-shadow: 3px 4px 16.8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.years-item {
  font-family: 'Agdasima';
  font-style: normal;
  font-weight: 700;
  font-size: 105px;
  line-height: 80px;
  color: rgb(var(--color-blue));
  position: relative;
}

.years-item::after {
  content: "+";
  font-family: "Nunito Sans";
  position: absolute;
  font-size: 50px;
  color: rgb(var(--color-brown));
  top: -20px;
  right: -30px;
}

.years {
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B625A;
}

.box-services {
  width: 100%;
  height: 100%;
  background: #F4F2EE;
  padding: 35px;
}

.box-border {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  position: relative;
  padding: 30px;
  color: #838383;
  z-index: 1;
}

.number-bg {
  position: absolute;
  right: 5px;
  top: 15px;
  z-index: -1;
}

.number-bg img {
  width: 90%;
}

.moving-up {
  position: relative;
  transform: translateY(-50px);
}

.faq {
  position: relative;
  transform: translateY(200px);
  padding-top: 90px;
  padding-bottom: 200px;
  margin-top: -80px;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: transparent;
  border: 0;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  text-align: left;
  background-color: transparent;
  border-bottom: 1px solid #B1B1B1;
  border-radius: 0;
  overflow-anchor: none;
  font-weight: 800;
  font-size: 25px;
  line-height: 55px;
  letter-spacing: -0.02em;
  color: #212D50;
}

.accordion-body {
  font-size: 20px;
  border-bottom: 1px solid #efefef;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  content: "+";
  font-size: 30px;
  color: rgb(var(--color-brown));
  background-image: none;
  background-repeat: no-repeat;
  background-size: auto;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  content: "-";
}

.wa-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 80;
}

.wa-button button {
  box-shadow: 0px 4px 30.1px #9E958D;
}

.close-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 30;
}

.link-popup {
  background: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  display: block;
  height: 100%;
  padding: 30px;
  position: relative;
}

.contact-icon {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* ========== Popup ========== */
.modal-overlay {
  content: '';
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ========== Swiper Override ========== */


/* ========== Footer ========== */
.footer {
  background: #E8E8E8;
  position: relative;
}

.footer-top {
  padding-top: 180px;
  padding-bottom: 60px;
}

.footer-bottom {
  padding: 30px 0;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}

/* ========== overide ========== */


/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 600px;
  }

}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }


}

@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }


}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (min-width: 1400px) {}

@media (min-width: 1025px) and (max-width: 1199px) {}

@media (min-width: 992px) {
  .toggle {
    display: none;
  }
}

@media (max-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-left {
    gap: 30px;
  }

  .main-menu {
    gap: 20px;
  }

  h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .box-services {
    padding: 25px;
  }

}

@media (max-width: 991px) {
  .main-menu {
    display: none;
  }

  .accordion-button {
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -0.02em;
  }

  .moving-up {
    transform: translateY(-75px);
  }
}

@media (max-width: 767px) {
  .header-left {
    gap: 10px;
  }

  .header-right {
    gap: 20px;
  }

  .logo {
    display: block;
    max-width: 55px;
  }

  .btn {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .btn-primary {
    padding: 15px 20px;
  }

  .btn-toggle {
    padding: 0;
  }

  .lang {
    gap: 5px;
  }

  .lang li::after {
    margin-left: 5px;
  }

  .bg-cta {
    background-color: rgb(var(--color-brown));
    border-radius: 10px;
    padding: 25px 30px;
  }

  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 28px;
    line-height: 30px;
  }

  .moving-up {
    transform: translateY(0);
  }

  .accordion-button {
    font-size: 18px;
    line-height: 20px;
  }

  .footer-top {
    padding-top: 180px;
    padding-bottom: 30px;
  }

  .faq {
    margin-top: -185px;
    transform: translateY(253px);
  }

  .img-notary {
    max-width: 70%;
  }

  .box-years {
    position: absolute;
    width: 150px;
    height: 138px;
    bottom: 30px;
    left: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #F4F2EE;
    box-shadow: 3px 4px 16.8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }
}

@media (min-width: 768px) {}

@media (max-width: 1000px) and (orientation: landscape) {}

@media (max-width: 700px) and (orientation: landscape) {}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}