@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --blue-color: #001b40;
  --blue-hover-color: #134386;
  --blue-gradient-color: linear-gradient(180deg, #021228 13%, #001b40 100%);
  --red-color: #ae0f0a;
  --red-hover-color: #8d0b07;
  --gray-color: #f3f3f3;
  --gray-color-dark: #6e6e6e;
  --gray-hover-color-dark: #716b6b;
  --white-color: #ffffff;
  --black-color: #1e1e1e;
  --green-color: #B5D330;
  --green-hover-color: #9db82a;
  --wp-green--color: #30CF4B;
  --wp-green--hover-color: #25a53a;
  --border-radius--big: 20px;
  --border-radius--normal: 15px;
  --border-radius--small: 10px;
  --trasition-default: all 0.3s ease;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove ul style */
ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

/* Remove input border */
input:focus-visible {
  outline: unset;
}

/* Remove input autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  /* Revert text color */
  -webkit-text-fill-color: unset !important;
  color: unset !important;
  caret-color: unset !important;
  /* Revert background color */
  transition: background-color 5000s ease-in-out 0s;
}

hr {
  margin-block-start: 0;
  margin-block-end: 0;
}

button {
  padding-block: 0;
  padding-inline: 0;
  border-width: 0;
  text-rendering: auto;
  color: unset;
  letter-spacing: unset;
  word-spacing: unset;
  text-align: unset;
  background-color: unset;
  text-transform: unset;
  text-indent: 0;
  text-shadow: none;
  display: unset;
}

textarea {
  /* Reset basic styling */
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  /* Reset typography */
  font: inherit;
  color: inherit;
  line-height: inherit;
  /* Reset size */
  width: auto;
  height: auto;
  resize: none;
  /* Optional: Remove scrollbars if not needed */
  overflow: hidden;
}

/* Optional: Reset user agent styles for other states (focus, hover, etc.) */
textarea:focus,
textarea:hover,
textarea:active {
  outline: none;
  box-shadow: none;
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bree Serif", serif;
  color: var(--blue-color);
}

h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 110%;
}
@media (min-width: 1075px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
}
@media (min-width: 1075px) {
  h2 {
    font-size: 2.6rem;
  }
}

h2 + p {
  text-align: center;
}

p {
  line-height: 156%;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color);
}

a {
  color: var(--red-color);
  text-decoration: underline;
  transition: var(--transition--default);
}
a:hover {
  color: var(--blue-color);
}

.title--red {
  color: var(--red-color);
}
.title--gray {
  color: var(--gray-color-dark);
}

.btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 30px;
  transition: var(--trasition-default);
  gap: 0.5rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 25px;
}
.btn--white {
  background: var(--white-color);
  color: var(--blue-color);
  border: 2px solid var(--blue-color);
}
.btn--white:hover {
  background: var(--gray-color);
  color: var(--blue-color-hover);
}
.btn--red {
  background: var(--red-color);
  color: var(--white-color);
}
.btn--red:hover {
  background: var(--red-hover-color);
  color: var(--white-color);
}
.btn--green {
  background: var(--green-color);
  color: var(--black-color);
}
.btn--green:hover {
  background: var(--green-hover-color);
  color: var(--black-color);
}
.btn--wp-green {
  background: var(--wp-green--color);
  color: var(--white-color);
}
.btn--wp-green:hover {
  background: var(--wp-green--hover-color);
  color: var(--white-color);
}

.section {
  width: 100%;
  margin: auto;
  padding: 2.5rem 0;
}
@media (min-width: 700px) {
  .section {
    padding: 3rem 0;
  }
}
@media (min-width: 1075px) {
  .section {
    padding: 4rem 0;
  }
}
.section--gradient-blue {
  background: var(--blue-gradient-color);
}
.section--mobile-gray {
  background: var(--gray-color);
}
@media (min-width: 1075px) {
  .section--mobile-gray {
    background: none;
  }
}
.section--only-desktop {
  display: block;
}
@media (min-width: 1075px) {
  .section--only-desktop {
    display: block;
  }
}
.section--white {
  background: #FFFFFF;
}
.section--blue-bg {
  background-image: url("../img/blue-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section--gray {
  background: var(--gray-color);
}
.section--p0 {
  padding: 0;
}
.section--top-line {
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 1075px) {
  .section--top-line {
    display: block;
  }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-line {
  display: none;
}
@media (min-width: 1075px) {
  .top-line {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding: 0.2rem 0;
  }
}

.top-line__item {
  font-size: 0.875rem;
  color: var(--white-color);
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  gap: 0.2rem;
}
.top-line__item span {
  color: var(--red-color);
}

a.top-line__item:hover {
  color: var(--gray-color) !important;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  background: var(--white-color);
  position: relative;
  z-index: 1001;
  max-width: 1240px;
  padding: 15px 20px;
  margin: auto;
}

.navbar__menu__desktop {
  display: none;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo-link {
  height: 40px;
  width: auto;
}
@media (min-width: 1075px) {
  .navbar__logo-link {
    height: 60px;
  }
}
.navbar__logo-link img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.navbar__menu__mobile {
  position: fixed;
  inset: 0;
  background: var(--white-color);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 1000;
  padding: 5.5rem 1.5rem 2.5rem;
  overflow-y: auto;
}

.navbar__menu__mobile.is-open {
  transform: translateY(0);
}

.navbar__panel {
  max-width: 680px;
  margin: 0 auto;
}

.navbar__toggles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}

.navbar__toggle {
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: none;
}

.navbar__toggle.is-active {
  display: block;
}

@media (min-width: 1075px) {
  .navbar__menu__desktop {
    display: flex;
  }
  .navbar__menu__mobile,
  .navbar__toggles {
    display: none;
  }
}
.navbar__block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__phone {
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue-color);
  text-decoration: none;
  line-height: 100%;
  height: auto;
}
.navbar__phone span {
  font-size: 2rem;
  line-height: normal;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 400;
  font-size: 1rem;
  color: var(--blue-color);
  padding: 0.65rem 0;
  background: transparent;
  border: 0;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition--default);
}
@media (min-width: 1075px) {
  .nav__link:hover {
    color: var(--red-color);
  }
}
.nav__link--active {
  font-weight: 600;
  position: relative;
  text-decoration: none;
}
@media (min-width: 1075px) {
  .nav__link--active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--red-color);
  }
}

.nav__text {
  display: inline-block;
}

.nav__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav__caret {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gray-color-dark);
  border-bottom: 2px solid var(--gray-color-dark);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open > .nav__link .nav__caret {
  transform: rotate(-135deg);
}

.nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.nav__item--dropdown.is-open > .nav__dropdown {
  max-height: 1000px;
  padding-top: 0.5rem;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  color: var(--vlue-color);
  text-decoration: none;
  transition: var(--transition-default);
}
.nav__dropdown-link:hover {
  color: var(--red-color);
}
@media (min-width: 1075px) {
  .nav__dropdown-link {
    padding: 0.3rem 0;
  }
}
.nav__dropdown-link--active {
  color: var(--black-color);
  font-weight: 600;
  background-color: var(--gray-color);
  border-radius: var(--border-radius--big);
  position: relative;
}
@media (min-width: 1075px) {
  .nav__dropdown-link--active {
    left: -1rem;
    padding: 0.45rem 1rem;
  }
}

.nav__dropdown-icon {
  width: 25px;
  height: auto;
}
@media (min-width: 1075px) {
  .nav__dropdown-icon {
    width: 30px;
  }
}

.nav__dropdown-item--empty {
  color: var(--gray-color-dark);
  font-size: 0.95rem;
  padding: 0.45rem 0;
}

@media (min-width: 1075px) {
  .nav {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .nav__link {
    padding: 0.5rem 0;
  }
  .nav__caret {
    margin-left: 0.35rem;
  }
  .nav__dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    background: var(--white-color);
    border-radius: var(--border-radius--big);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    padding: 1rem 1.25rem;
    min-width: 400px;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 0.75rem 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: none;
    overflow: visible;
  }
  .nav__item--dropdown:hover > .nav__dropdown,
  .nav__item--dropdown:focus-within > .nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__item--dropdown .nav__caret {
    transform: rotate(45deg);
  }
  .nav__item--dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
  }
}
:root {
  --header-height-d: 545px;
}

.header {
  position: relative;
  width: 100%;
}

.header__home__img {
  height: 300px;
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
  margin: auto;
}
@media (min-width: 1075px) {
  .header__home__img {
    height: var(--header-height-d);
    left: 0;
    width: 100%;
  }
}
.header__home__img img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.header__home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0rem;
  gap: 1rem;
}
@media (min-width: 1075px) {
  .header__home__content {
    position: absolute;
    height: var(--header-height-d);
    top: 0;
    left: 0;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 3rem;
    gap: 1.5rem;
    max-width: 440px;
  }
}
@media (min-width: 1075px) {
  .header__home__content--order-1 {
    order: 1;
  }
}
@media (min-width: 1075px) {
  .header__home__content--order-2 {
    order: 3;
  }
}
@media (min-width: 1075px) {
  .header__home__content--order-3 {
    order: 2;
  }
}
.header__home__title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue-color);
  line-height: 110%;
}
@media (min-width: 1075px) {
  .header__home__title {
    font-size: 3rem;
  }
}

.header__default {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1075px) {
  .header__default {
    gap: 2rem;
  }
}

.hero-section {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 3rem;
}
.hero-section__img {
  display: none;
}
@media (min-width: 1075px) {
  .hero-section__img {
    display: block;
    width: clamp(320px, 35vw, 560px);
    flex: 0 0 auto;
  }
}
.hero-section__img img {
  display: none;
}
@media (min-width: 1075px) {
  .hero-section__img img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.hero-section__title {
  text-align: left;
}
.hero-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.hero-section__text {
  font-size: 1rem;
  line-height: 1.5;
}
.hero-section__text.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-section__text.is-expanded {
  display: block;
  overflow: visible;
}
@media (min-width: 1075px) {
  .hero-section__text {
    display: block;
    overflow: visible;
  }
}
.hero-section__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--blue-color);
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 1075px) {
  .hero-section__toggle {
    display: none;
  }
}
.hero-section__toggle-icon {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 0.9em;
}
.hero-section__text.is-expanded + .hero-section__toggle .hero-section__toggle-icon {
  transform: rotate(180deg);
}

.six-services {
  position: relative;
}
.six-services--mobile {
  display: block;
}
.six-services--desktop {
  display: none;
}
.six-services__list {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
@media (min-width: 1075px) {
  .six-services__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}
.six-services__item {
  background: var(--gray-color);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1075px) {
  .six-services__item {
    box-shadow: none;
    padding: 4rem 2rem;
    gap: 2rem;
  }
}
.six-services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.six-services__header img {
  width: 80px;
  height: auto;
}
.six-services__text {
  color: var(--blue-color);
}
.six-services .btn {
  align-self: center;
  margin-top: auto;
}
@media (min-width: 1075px) {
  .six-services.splide {
    visibility: visible !important;
  }
}
.six-services .splide__arrows {
  position: static;
  display: flex;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-left: 1rem;
}
.six-services .splide__arrow {
  position: static;
  transform: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-color);
  border: 0;
  color: var(--white-color);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  left: auto;
  right: auto;
  top: auto;
}
.six-services .splide__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.six-services .splide__track {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 1.5rem;
}
@media (min-width: 1075px) {
  .six-services--mobile {
    display: none;
  }
  .six-services--desktop {
    display: block;
  }
  .six-services .splide__track {
    overflow: visible;
  }
  .six-services__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 0;
  }
  .six-services__item {
    width: auto !important;
  }
  .six-services .splide__arrows {
    display: none;
  }
}

.calc-form {
  --calc-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  --calc-border: #e6e6e6;
  --calc-pill-bg: #ffffff;
  --calc-pill-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  --calc-soft: #f6f6f6;
  --calc-text: #0b1b3f;
  --calc-muted: #7a7a7a;
  --calc-accent: var(--red-color);
  --calc-accent-dark: var(--red-hover-color);
  background: #ffffff;
  border-radius: var(--border-radius--big);
  padding: 32px;
  box-shadow: var(--calc-shadow);
  color: var(--calc-text);
  position: relative;
}

.calc-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 1075px) {
  .calc-form__header {
    margin-bottom: 3rem;
  }
}

.calc-form__title {
  font-family: "Bree Serif", serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0;
  color: var(--calc-text);
  text-align: center;
}

.calc-form__close {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--calc-border);
  background: #ffffff;
  position: relative;
  cursor: pointer;
  transition: var(--trasition-default);
}

.calc-form__close::before,
.calc-form__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--calc-text);
}

.calc-form__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.calc-form__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.calc-form__close:hover {
  border-color: var(--calc-accent);
}

.calc-modal--form .calc-form__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calc-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calc-form__intro {
  font-size: 16px;
  color: var(--calc-muted);
  margin: 0 0 12px 0;
}

.calc-form__label {
  font-weight: 600;
  margin: 0;
}

.calc-form__pill {
  background: var(--calc-pill-bg);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: var(--calc-pill-shadow);
  font-weight: 600;
}

.calc-form__field {
  flex: 1 1 0;
}

.calc-form__field--full {
  grid-column: 1/-1;
}

.calc-form__input,
.calc-form__select {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--calc-soft);
  color: var(--calc-text);
  font-size: 15px;
  transition: var(--trasition-default);
}

.calc-form__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--calc-muted) 50%), linear-gradient(135deg, var(--calc-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.calc-form__input:focus,
.calc-form__select:focus {
  outline: none;
  border-color: var(--calc-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(174, 15, 10, 0.15);
}

.calc-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.calc-form__fields--property {
  margin-bottom: 24px;
  display: none;
}

.calc-form__consents {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--calc-muted);
  margin-bottom: 20px;
}

.calc-form__consent a {
  color: var(--calc-text);
  font-weight: 600;
}

.calc-form__submit-row {
  display: flex;
  justify-content: center;
}

.calc-form__submit {
  background: var(--calc-accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trasition-default);
}

.calc-form__submit:hover {
  background: var(--calc-accent-dark);
}

.calc-form__repre-link {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 13px;
  color: var(--calc-muted);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
}

.calc-form__repre-link--contact {
  margin-top: 14px;
  display: none;
}

.calc-form__step {
  display: block;
}

.calc-form__step.is-active {
  display: block;
}

.calc-form__step-header {
  display: none;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 16px;
}

.calc-form__step-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.calc-form__step--contact .calc-contact,
.calc-form__step--contact .wpcf7,
.calc-form__step--contact .wpcf7 form {
  display: block;
}

.calc-form__back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--calc-border);
  background: #ffffff;
  position: relative;
  cursor: pointer;
}

.calc-form__back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--calc-text);
  border-bottom: 2px solid var(--calc-text);
  transform: translate(-35%, -50%) rotate(45deg);
}

.calc-form__next {
  display: none;
  background: var(--calc-accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

@media (max-width: 699px) {
  .calc-form {
    padding: 24px 20px 28px;
  }
  .calc-form__grid {
    grid-template-columns: 1fr;
  }
  .calc-form__fields {
    grid-template-columns: 1fr;
  }
  .calc-form__next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .calc-form__repre-link--contact {
    margin-top: 10px;
    display: inline-block;
  }
  .calc-form.is-step-2 .calc-form__repre-link--calc {
    display: none;
  }
  .calc-form.is-step-2 .calc-form__repre-link--contact {
    display: inline-block;
  }
  .calc-form__step {
    display: none;
  }
  .calc-form__step.is-active {
    display: block;
  }
  .calc-form.is-step-2 .calc-form__step--calc {
    display: none;
  }
  .calc-form.is-step-2 .calc-form__step--contact {
    display: block;
  }
  .calc-form__step-header {
    display: flex;
  }
}
.calc-form__toggle {
  display: inline-flex;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--calc-border);
  gap: 6px;
}

.calc-form__toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--calc-text);
  transition: var(--trasition-default);
}

.calc-form__toggle-btn.is-active {
  background: var(--calc-accent);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(174, 15, 10, 0.2);
}

.calc-form__range {
  margin-top: 22px;
}
@media (min-width: 1075px) {
  .calc-form__range {
    margin-top: 28px;
  }
}

.calc-form__range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calc-form__slider {
  width: 100%;
  margin: 12px 0 6px;
  accent-color: var(--calc-accent);
}

.calc-form__range-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--calc-muted);
}

.calc-form__result {
  margin-top: 24px;
  background: #ffffff;
  border-radius: var(--border-radius--normal);
  padding: 18px 20px;
  box-shadow: var(--calc-shadow);
  display: grid;
  gap: 12px;
  position: relative;
}
@media (min-width: 1075px) {
  .calc-form__result {
    margin-top: 32px;
  }
}

.calc-form__result::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 100px;
  width: 1px;
  height: calc(100% - 32px);
  background: var(--calc-border);
}

.calc-form__result-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-form__result-label {
  margin: 0;
  font-size: 13px;
  color: var(--calc-muted);
}

.calc-form__result-value {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--calc-text);
}

.calc-form__result-value--accent {
  color: var(--calc-accent);
}

.calc-form__result-side {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  text-align: center;
}

.calc-form__ownership {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

@media (max-width: 699px) {
  .calc-form__result {
    padding: 16px;
  }
  .calc-form__result::after {
    display: none;
  }
  .calc-form__result-side {
    position: static;
    transform: none;
    text-align: left;
    border-top: 1px solid var(--calc-border);
    padding-top: 12px;
  }
  .calc-form__ownership {
    flex-direction: column;
    align-items: flex-start;
  }
}
.calc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1002;
}

.calc-modal.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.calc-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 1002;
}

.calc-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: var(--border-radius--big);
  padding: 28px;
  width: min(560px, 92vw);
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  z-index: 1003;
}

.calc-modal__title {
  font-family: "Bree Serif", serif;
  margin: 0 0 16px 0;
  font-size: 22px;
}

.calc-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--calc-border);
  background: #ffffff;
  cursor: pointer;
}

.calc-modal__close::before,
.calc-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--calc-text);
}

.calc-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.calc-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.calc-modal--form {
  background: rgba(0, 27, 64, 0.7);
}

.calc-modal--form .calc-modal__panel {
  width: min(1100px, 94vw);
  max-height: 92vh;
  padding: 24px;
  background: transparent;
  box-shadow: none;
}

.calc-modal--form .calc-form {
  box-shadow: none;
}

@media (max-width: 699px) {
  .calc-modal__panel {
    width: 94vw;
    padding: 20px;
  }
  .calc-modal--form .calc-modal__panel {
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    padding: 20px;
    background: #ffffff;
  }
  .calc-modal--form .calc-form {
    height: 100%;
    overflow: auto;
    box-shadow: none;
    padding: 20px 20px 80px 20px;
  }
}
.repre-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1004;
}

.repre-modal.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.repre-modal__overlay {
  position: absolute;
  inset: 0;
}

.repre-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: var(--border-radius--big);
  padding: 28px;
  width: min(560px, 92vw);
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  z-index: 1005;
}

.repre-modal__title {
  font-family: "Bree Serif", serif;
  margin: 0 0 16px 0;
  font-size: 22px;
}

.repre-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  cursor: pointer;
}

.repre-modal__close::before,
.repre-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #0b1b3f;
}

.repre-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.repre-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--gray-color);
  padding: 20px;
  border-radius: var(--border-radius--big);
}

.contact-form-benefits {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}

.contact-form-benefits__item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  color: var(--blue-color) !important;
}

.section--blue-bg .contact-form-benefits__item h3,
.section--blue-bg .contact-form-benefits__item p {
  color: var(--white-color) !important;
}

.reviews {
  position: relative;
  margin-top: 2.5rem;
}
.reviews.splide {
  padding-bottom: 1.5rem;
}

.reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reviews__item {
  height: auto;
}

.reviews__card {
  position: relative;
  background-color: var(--white-color);
  border-radius: var(--border-radius--big);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  min-height: 100%;
}

.reviews__card::after {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-color);
}

.reviews__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews__avatar {
  flex: 0 0 auto;
}

.reviews__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reviews__name {
  font-weight: 700;
  color: var(--blue-color);
}

.reviews__position,
.reviews__age {
  color: var(--gray-color-dark);
  font-size: 0.95rem;
}

.reviews__text {
  color: var(--black-color);
  line-height: 1.5;
}

.reviews .splide__track {
  padding: 0.25rem 0;
}

.reviews .splide__arrows {
  position: static;
  display: flex;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
}

.reviews .splide__arrow {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--red-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: var(--trasition-default);
  transform: none;
}

.reviews .splide__arrow:hover {
  background-color: var(--red-hover-color);
}

.reviews .splide__pagination {
  margin-top: 0.75rem;
  justify-content: center;
  gap: 0.5rem;
}

.reviews .splide__pagination__page {
  background-color: #d8d8d8;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: var(--trasition-default);
}

.reviews .splide__pagination__page.is-active {
  background-color: var(--blue-color);
  transform: scale(1.1);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  color: var(--white-color);
  margin-bottom: 8rem;
}
@media (min-width: 1075px) {
  .footer {
    gap: 2.5rem;
    margin-bottom: unset;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__group {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.footer__logo img {
  max-width: 260px;
  height: auto;
  display: block;
}

.footer__company-name {
  font-size: 1.4rem;
  font-weight: 600;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.footer__address-line {
  display: block;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer__contact:hover {
  color: var(--gray-color);
}

.footer__icon {
  color: var(--red-color);
  font-size: 1.4rem;
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__whatsapp .material-icons {
  font-size: 1.2rem;
}

.footer__note {
  max-width: 720px;
  line-height: 1.6;
  margin-top: 1rem;
}
.footer__note p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.desatero {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .desatero {
    gap: 1.5rem;
  }
}

.desatero__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-color);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media (min-width: 700px) {
  .desatero__item {
    padding: 1.5rem 1.75rem;
    gap: 1.5rem;
  }
}

.desatero__number {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  color: var(--blue-color);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 700px) {
  .desatero__number {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }
}

.desatero__content {
  flex: 1 1 auto;
}

.desatero__title {
  margin: 0 0 0.5rem;
  color: var(--blue-color);
  font-size: 1.1rem;
  font-weight: 600;
}
@media (min-width: 700px) {
  .desatero__title {
    font-size: 1.25rem;
  }
}

.desatero__text {
  color: var(--gray-color-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.single-blog .container {
  max-width: 900px;
}

.single-blog__image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 700px) {
  .single-blog__image {
    height: 260px;
    margin-bottom: 1.5rem;
  }
}
.single-blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-blog__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  color: var(--gray-color-dark);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 700px) {
  .single-blog__meta {
    margin-bottom: 1rem;
  }
}

.single-blog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.single-blog__tag {
  background: var(--red-color);
  color: var(--white-color);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}

.single-blog__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.single-blog__meta-item .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  color: var(--gray-color-dark);
}

.single-blog__title {
  color: var(--blue-color);
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .single-blog__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.single-blog__content {
  color: var(--black-color);
  line-height: 1.7;
}
.single-blog__content h2 {
  color: var(--blue-color);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}
.single-blog__content h3 {
  color: var(--red-color);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}
.single-blog__content p {
  margin: 0 0 1rem;
  color: var(--gray-color-dark);
}
.single-blog__content a {
  color: var(--red-color);
}

.single-blog__toc-box {
  background: #eeeeee;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 700px) {
  .single-blog__toc-box {
    padding: 1.5rem 2rem;
  }
}

.single-blog__toc-title {
  color: var(--blue-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-align: center;
}

.single-blog__toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single-blog__toc-item a {
  color: var(--blue-color);
  text-decoration: underline;
  font-weight: 600;
}

.single-blog__toc-item--h2 {
  position: relative;
  padding-left: 1rem;
}
.single-blog__toc-item--h2::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-color);
  font-size: 1.1rem;
  line-height: 1;
}

.single-blog__toc-item--h3 a {
  color: var(--red-color);
  font-weight: 500;
}

.single-blog__toc-num {
  color: var(--red-color);
  font-weight: 600;
}

.blog-archive .container {
  max-width: 1100px;
}

.blog-archive__topics {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-archive__topics-title {
  color: var(--blue-color);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.blog-archive__topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-archive__topic {
  border: 1px solid var(--red-color);
  color: var(--blue-color);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--white-color);
  transition: var(--trasition-default);
}
.blog-archive__topic:hover {
  color: var(--white-color);
  background: var(--red-color);
}

.blog-archive__topic--active {
  background: var(--red-color);
  color: var(--white-color);
}

.blog-archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .blog-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1075px) {
  .blog-archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-archive__card {
  background: var(--white-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

@media (min-width: 700px) {
  .blog-archive__card--featured {
    grid-column: span 2;
    flex-direction: row;
    min-height: 260px;
  }
}
@media (min-width: 1075px) {
  .blog-archive__card--featured {
    grid-column: span 3;
  }
}
@media (min-width: 700px) {
  .blog-archive__card--featured .blog-archive__image {
    flex: 0 0 45%;
    height: auto;
  }
}
@media (min-width: 700px) {
  .blog-archive__card--featured .blog-archive__content {
    padding: 2rem;
  }
}

.blog-archive__image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 700px) {
  .blog-archive__image {
    height: 200px;
  }
}
.blog-archive__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-archive__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--red-color);
  color: var(--white-color);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-archive__badge--inline {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.blog-archive__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-archive__title {
  color: var(--blue-color);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.blog-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  color: var(--gray-color-dark);
  font-size: 0.9rem;
}

.blog-archive__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-archive__meta-item .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  color: var(--gray-color-dark);
}

.blog-archive__link {
  margin-top: auto;
  color: var(--black-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.blog-archive__link .material-symbols-outlined {
  font-size: 1.2rem;
}

.why-section {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.why-section__top {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.why-section__media {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.why-section__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-section__title {
  margin: 0 0 0.75rem;
  color: var(--blue-color);
}

.why-section__text {
  color: var(--blue-color);
  opacity: 0.9;
  line-height: 1.6;
}

.why-section__benefits {
  display: grid;
  gap: 2rem;
}

.why-section__benefit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.why-section__benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.why-section__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-section__benefit-title {
  margin: 0;
  color: var(--blue-color);
}

.why-section__benefit-text {
  margin: 0;
  color: var(--blue-color);
  opacity: 0.85;
  line-height: 1.6;
  max-width: 26rem;
}

@media (min-width: 1075px) {
  .why-section__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
  .why-section__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.sticky-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 0.75rem 1rem calc(2.75rem + env(safe-area-inset-bottom));
  background: transparent;
}

.sticky-buttons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.sticky-buttons__inner--single {
  grid-template-columns: 1fr;
}

.sticky-buttons__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px 0 0 12px;
  background: var(--red-color);
  color: var(--white-color);
  border: 0;
  text-decoration: none;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(150, 10, 10, 0.24);
  transition: var(--transition--default);
}
.sticky-buttons__btn--radius {
  border-radius: 0 12px 12px 0;
}
.sticky-buttons__btn--green {
  background: var(--wp-green--color);
  color: var(--white-color);
}
.sticky-buttons__btn--green:hover {
  background: var(--wp-green--hover-color) !important;
  color: var(--white-color) !important;
}

.sticky-buttons__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
}

.sticky-buttons__btn:hover,
.sticky-buttons__btn:focus-visible {
  background: var(--red-hover-color);
  color: var(--white-color);
}

.sticky-buttons__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.sticky-buttons__label {
  font-size: 0.95rem;
  display: inline-block;
}

.sticky-buttons__sub {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.15rem;
}

@media (min-width: 1075px) {
  .sticky-buttons {
    display: none;
  }
}
.thank-you {
  display: grid;
  gap: 1.5rem;
}

.thank-you__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white-color);
  border: 1px solid rgba(35, 54, 85, 0.12);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}
.thank-you__status .material-symbols-outlined {
  color: #1c9c5f;
  font-size: 1.8rem;
}
.thank-you__status p {
  margin: 0;
  color: var(--blue-color);
  font-weight: 600;
}

.thank-you__summary,
.thank-you__next-steps {
  background: var(--white-color);
  border-radius: 16px;
  border: 1px solid rgba(35, 54, 85, 0.12);
  padding: 1.5rem;
}
.thank-you__summary h2,
.thank-you__next-steps h2 {
  margin: 0 0 1rem;
  color: var(--blue-color);
  font-size: 1.35rem;
}

.thank-you__grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .thank-you__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1075px) {
  .thank-you__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.thank-you__item {
  border: 1px solid rgba(35, 54, 85, 0.12);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
}
.thank-you__item dt {
  font-size: 0.85rem;
  color: var(--gray-color-dark);
  margin-bottom: 0.2rem;
}
.thank-you__item dd {
  margin: 0;
  color: var(--blue-color);
  font-weight: 600;
}

.thank-you__next-steps ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--gray-color-dark);
  display: grid;
  gap: 0.45rem;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.thank-you-blog__header {
  margin-bottom: 1.5rem;
}
.thank-you-blog__header h2 {
  color: var(--blue-color);
  margin: 0 0 0.35rem;
}
.thank-you-blog__header p {
  margin: 0;
  color: var(--gray-color-dark);
}

@media (min-width: 700px) {
  .thank-you-blog__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-page .container {
  max-width: 900px;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-page__header h1 {
  color: var(--blue-color);
  margin: 0;
}

.contact-page__person {
  background: #ebebeb;
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .contact-page__person {
    grid-template-columns: 180px 1fr;
    padding: 2rem 2.5rem;
  }
}

.contact-page__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
}
@media (min-width: 700px) {
  .contact-page__photo {
    width: 180px;
    height: 180px;
  }
}
.contact-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-page__person-info h2 {
  color: var(--blue-color);
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  line-height: 1.15;
}
@media (min-width: 1075px) {
  .contact-page__person-info h2 {
    font-size: 2.2rem;
  }
}

.contact-page__position {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  line-height: 1.35;
}
@media (min-width: 1075px) {
  .contact-page__position {
    font-size: 1.05rem;
  }
}

.contact-page__links {
  display: grid;
  gap: 0.55rem;
}
.contact-page__links a {
  text-decoration: none;
  color: var(--black-color);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.25;
  width: fit-content;
}
.contact-page__links a .material-symbols-outlined {
  color: var(--red-color);
  font-size: 1.2rem;
}

.contact-page__addresses {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .contact-page__addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.contact-page__address {
  text-align: center;
}
.contact-page__address h3 {
  color: var(--blue-color);
  margin: 0 0 0.9rem;
}
.contact-page__address p {
  margin: 0;
}

.contact-page__ic {
  margin-top: 0.8rem !important;
}

.how-loan .container {
  max-width: 1080px;
}

.how-loan__title {
  text-align: center;
  margin: 0 0 2rem;
}

.how-loan__list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.how-loan__list::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  bottom: 1.75rem;
  left: 1.28rem;
  width: 2px;
  border-left: 2px dashed rgba(0, 27, 64, 0.35);
}

.how-loan__row {
  position: relative;
  padding-left: 3.8rem;
}

.how-loan__number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--blue-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Bree Serif", serif;
  z-index: 2;
}

.how-loan__card {
  background: #ebebeb;
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 0.9rem;
}

.how-loan__icon {
  width: 48px;
  height: 48px;
  border: 3px solid var(--red-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.how-loan__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.how-loan__content h3 {
  margin: 0 0 0.3rem;
  color: var(--blue-color);
  font-size: 1.3rem;
  line-height: 1.2;
}

.how-loan__text p {
  margin: 0;
  color: var(--black-color);
  font-size: 0.95rem;
  line-height: 1.3;
}

@media (min-width: 700px) {
  .how-loan__list::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .how-loan__row {
    min-height: 180px;
    padding-left: 0;
    display: flex;
    align-items: center;
  }
  .how-loan__number {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1.55rem;
  }
  .how-loan__row--left .how-loan__card,
  .how-loan__row--right .how-loan__card {
    width: calc(50% - 2.2rem);
  }
  .how-loan__row--left .how-loan__card {
    margin-right: auto;
  }
  .how-loan__row--right .how-loan__card {
    margin-left: auto;
  }
  .how-loan__card {
    grid-template-columns: 58px 1fr;
    gap: 1.1rem;
    padding: 1.35rem 1.45rem;
  }
  .how-loan__icon {
    width: 58px;
    height: 58px;
  }
  .how-loan__icon img {
    width: 30px;
    height: 30px;
  }
  .how-loan__content h3 {
    font-size: 1.45rem;
  }
  .how-loan__text p {
    font-size: 1rem;
  }
}
.contact-assignee {
  background: #f5f5f5;
  border-radius: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.5rem;
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}
@media (min-width: 700px) {
  .contact-assignee {
    grid-template-columns: minmax(180px, 250px) 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 2.1rem;
  }
}

.contact-assignee__intro {
  text-align: center;
  border-bottom: 2px solid #b7b7b7;
  padding-bottom: 0.9rem;
}
.contact-assignee__intro p {
  margin: 0;
  color: var(--blue-color);
  text-underline-offset: 4px;
  font-size: 1.05rem;
  line-height: 1.15;
}
@media (min-width: 700px) {
  .contact-assignee__intro {
    text-align: left;
    border-bottom: 0;
    padding-bottom: 0;
    border-right: 2px solid #b7b7b7;
    padding-right: 1.25rem;
  }
}

.contact-assignee__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.contact-assignee__photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .contact-assignee__photo {
    width: 110px;
    height: 110px;
  }
}
.contact-assignee__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-assignee__meta {
  text-align: center;
}
@media (min-width: 700px) {
  .contact-assignee__meta {
    text-align: left;
  }
}
.contact-assignee__meta p {
  margin: 0;
}

.contact-assignee__name {
  font-family: "Bree Serif", serif;
  color: var(--blue-color);
  font-size: 1.45rem;
  line-height: 1.1;
}

.contact-assignee__role {
  color: var(--black-color);
  font-size: 0.95rem;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .contact-assignee__role {
    font-size: 1rem;
  }
}

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

/*# sourceMappingURL=styles.css.map */
